Samples
Samples
ActionBar
Language: Silver, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Silver/Cooper/Android/ActionBar
-
com.remobjects.actionbar
-
References
- android
- cooper
- swift
- Source Files
-
Other Files
- res\values\strings.android-xml
- res\layout\main.layout-xml
- res\drawable-hdpi\icon.png
- res\drawable-mdpi\icon.png
- res\drawable-ldpi\icon.png
- res\drawable-xhdpi\icon.png
- Properties\AndroidManifest.android-xml
- res\drawable-hdpi\ic_action_search.png
- res\drawable-ldpi\ic_action_search.png
- res\drawable-mdpi\ic_action_search.png
- res\drawable-xhdpi\ic_action_search.png
- res\menu\main_activity_actions.xml
- res\values\themes.xml
-
References
Properties\AndroidManifest.android-xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.remobjects.actionbar">
<!-- the android:debuggable="true" attribute is overwritten by the compiler when the debug info option is set -->
<application android:label="@string/app_name" android:icon="@drawable/icon" android:theme="@style/CustomActionBarTheme">
<activity android:label="@string/app_name" android:name="com.remobjects.actionbar.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="SearchActivity" android:name="com.remobjects.actionbar.SearchActivity" android:parentActivityName="com.remobjects.actionbar.MainActivity" >></activity>
<activity android:label="SettingsActivity" android:name="com.remobjects.actionbar.SettingsActivity" android:parentActivityName="com.remobjects.actionbar.MainActivity" >></activity>
</application>
<uses-sdk android:minSdkVersion="11" />
</manifest>
