Last active
August 29, 2015 14:11
-
-
Save Namib/683b60856ef96cb58136 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- File created by the Android Action Bar Style Generator | |
Copyright (C) 2011 The Android Open Source Project | |
Copyright (C) 2012 readyState Software Ltd | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. | |
--> | |
<resources> | |
<style name="Theme.Styletheme" parent="@style/Theme.AppCompat.Light"> | |
<item name="actionBarItemBackground">@drawable/selectable_background_styletheme</item> | |
<item name="popupMenuStyle">@style/PopupMenu.Styletheme</item> | |
<item name="dropDownListViewStyle">@style/DropDownListView.Styletheme</item> | |
<item name="actionBarTabStyle">@style/ActionBarTabStyle.Styletheme</item> | |
<item name="actionDropDownStyle">@style/DropDownNav.Styletheme</item> | |
<item name="actionBarStyle">@style/ActionBar.Solid.Styletheme</item> | |
<item name="actionModeBackground">@drawable/cab_background_top_styletheme</item> | |
<item name="actionModeSplitBackground">@drawable/cab_background_bottom_styletheme</item> | |
<item name="actionModeCloseButtonStyle">@style/ActionButton.CloseMode.Styletheme</item> | |
</style> | |
<style name="ActionBar.Solid.Styletheme" parent="@style/Widget.AppCompat.Light.ActionBar.Solid"> | |
<item name="background">@drawable/ab_solid_styletheme</item> | |
<item name="backgroundStacked">@drawable/ab_stacked_solid_styletheme</item> | |
<item name="backgroundSplit">@drawable/ab_bottom_solid_styletheme</item> | |
<item name="progressBarStyle">@style/ProgressBar.Styletheme</item> | |
</style> | |
<style name="ActionBar.Transparent.Styletheme" parent="@style/Widget.AppCompat.Light.ActionBar"> | |
<item name="background">@drawable/ab_transparent_styletheme</item> | |
<item name="progressBarStyle">@style/ProgressBar.Styletheme</item> | |
</style> | |
<style name="PopupMenu.Styletheme" parent="@style/Widget.AppCompat.Light.PopupMenu"> | |
<item name="android:popupBackground">@drawable/menu_dropdown_panel_styletheme</item> | |
</style> | |
<style name="DropDownListView.Styletheme" parent="@style/Widget.AppCompat.Light.ListView.DropDown"> | |
<item name="android:listSelector">@drawable/selectable_background_styletheme</item> | |
<item name="android:background">@android:color/white</item> | |
</style> | |
<style name="ActionBarTabStyle.Styletheme" parent="@style/Widget.AppCompat.Light.ActionBar.TabView"> | |
<item name="android:background">@drawable/tab_indicator_ab_styletheme</item> | |
</style> | |
<style name="DropDownNav.Styletheme" parent="@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar"> | |
<item name="android:background">@drawable/spinner_background_ab_styletheme</item> | |
<item name="android:popupBackground">@drawable/menu_dropdown_panel_styletheme</item> | |
<item name="android:dropDownSelector">@drawable/selectable_background_styletheme</item> | |
</style> | |
<style name="ProgressBar.Styletheme" parent="@style/Widget.AppCompat.ProgressBar.Horizontal"> | |
<item name="android:progressDrawable">@drawable/progress_horizontal_styletheme</item> | |
</style> | |
<style name="ActionButton.CloseMode.Styletheme" parent="@style/Widget.AppCompat.Light.ActionButton.CloseMode"> | |
<item name="android:background">@drawable/btn_cab_done_styletheme</item> | |
</style> | |
<!-- this style is only referenced in a Light.DarkActionBar based theme --> | |
<style name="Theme.Styletheme.Widget" parent="@style/Theme.AppCompat"> | |
<item name="popupMenuStyle">@style/PopupMenu.Styletheme</item> | |
<item name="dropDownListViewStyle">@style/DropDownListView.Styletheme</item> | |
</style> | |
<style name="ActionBar.CustomTitle" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"> | |
<item name="android:textColor">@color/actionbar_text</item> | |
<!-- The textColor property is backward compatible with the Support Library --> | |
</style> | |
</resources> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<android xmlns:android="http://schemas.android.com/apk/res/android"> | |
<manifest> | |
<!-- Allows the API to download data from Google Map servers --> | |
<uses-permission android:name="android.permission.INTERNET"/> | |
<!-- Allows the API to cache data --> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
<!-- Use GPS for device location --> | |
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | |
<!-- Use Wi-Fi or mobile connection for device location --> | |
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> | |
<!-- Allows the API to access Google web-based services --> | |
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/> | |
<!-- Specify OpenGL ES 2.0 as a requirement --> | |
<uses-feature android:glEsVersion="0x00020000" android:required="true"/> | |
<!-- Replace <com.domain.appid> with your application ID --> | |
<uses-permission android:name="com.qinnovation.ae.ansariexchangeapp.permission.MAPS_RECEIVE"/> | |
<permission android:name="com.qinnovation.ae.ansariexchangeapp.permission.MAPS_RECEIVE" android:protectionLevel="signature"/> | |
<application android:theme="@android:style/Theme.Translucent"> | |
<!--<supports-screens android:anyDensity="true"/> | |
<item name="android:displayOptions">showHome|homeAsUp|showTitle</item> | |
<item name="displayOptions">showHome|homeAsUp|showTitle</item> | |
<item name="android:icon">@android:color/transparent</item>--> | |
<activity | |
android:configChanges="keyboardHidden|screenSize" | |
android:name="org.appcelerator.titanium.TiActivity" | |
android:screenOrientation="portrait" android:theme="@style/Theme.Styletheme"/> | |
<activity android:configChanges="keyboardHidden" | |
android:name="org.appcelerator.titanium.TiModalActivity" | |
android:screenOrientation="portrait" android:theme="@style/Theme.Styletheme"/> | |
<activity | |
android:configChanges="keyboardHidden|screenSize" | |
android:name="org.appcelerator.titanium.TiTranslucentActivity" | |
android:screenOrientation="portrait" android:theme="@style/Theme.Styletheme"/> | |
<!--<uses-library android:name="com.google.android.maps"/>--> | |
<service android:exported="false" android:name="org.appcelerator.titanium.analytics.TiAnalyticsService"/> | |
<!--<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"/>--> | |
<!-- Replace "PASTE YOUR GOOGLE MAPS API KEY HERE" with the Google API key you obtained --> | |
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyAVBZDP7T8AkI1HNuagwnM5XEI6TYnzXeE"/> | |
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/> | |
</application> | |
</manifest> | |
</android> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment