Samples
Samples
Wiktionary
Language: Oxygene, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Cooper/Android/Wiktionary
-
com.example.android.simplewiktionary
-
References
- android
- Source Files
-
Other Files
- res\values\strings.android-xml
- Properties\AndroidManifest.android-xml
- NOTICE
- Readme.txt
- res\anim\slide_in.android-xml
- res\anim\slide_out.android-xml
- res\drawable\app_icon.png
- res\drawable\ic_menu_shuffle.png
- res\drawable\logo_overlay.9.png
- res\drawable\lookup_bg.android-xml
- res\drawable\progress_spin.android-xml
- res\drawable\star_logo.png
- res\drawable\widget_bg.android-xml
- res\drawable\widget_bg_normal.9.png
- res\drawable\widget_bg_pressed.9.png
- res\drawable\widget_bg_selected.9.png
- res\layout\about.layout-xml
- res\layout\lookup.layout-xml
- res\layout\widget_message.layout-xml
- res\layout\widget_word.layout-xml
- res\menu\lookup.android-xml
- res\values\styles.android-xml
- res\values\themes.android-xml
- res\xml\searchable.android-xml
- res\xml\widget_word.android-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.example.android.wiktionary"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
<meta-data android:name="android.app.default_searchable" android:value=".LookupActivity" />
<!-- the android:debuggable="true" attribute is overwritten by the compiler when the debug info option is set -->
<application android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:description="@string/app_descrip">
<!-- Browser-like Activity to navigate dictionary definitions -->
<activity
android:name=".LookupActivity"
android:theme="@style/LookupTheme"
android:launchMode="singleTop"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="wiktionary" android:host="lookup" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
</activity>
<!-- Broadcast Receiver that will process AppWidget updates -->
<receiver android:name=".WordWidget"
android:label="@string/widget_name"
android:icon="@drawable/app_icon"
>
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_word" />
</receiver>
<!-- Service to perform web API queries -->
<service android:name=".WordWidget$UpdateService" />
</application>
</manifest>
