summaryrefslogtreecommitdiffstats
path: root/samples/NotePad
diff options
context:
space:
mode:
Diffstat (limited to 'samples/NotePad')
-rw-r--r--samples/NotePad/AndroidManifest.xml3
-rw-r--r--samples/NotePad/res/menu/editor_options_menu.xml4
2 files changed, 4 insertions, 3 deletions
diff --git a/samples/NotePad/AndroidManifest.xml b/samples/NotePad/AndroidManifest.xml
index 63428049e..ead782925 100644
--- a/samples/NotePad/AndroidManifest.xml
+++ b/samples/NotePad/AndroidManifest.xml
@@ -22,7 +22,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.notepad" >
- <uses-sdk android:minSdkVersion="Gingerbread" />
+ <uses-sdk android:minSdkVersion="11" />
+
<application android:icon="@drawable/app_notes"
android:label="@string/app_name"
>
diff --git a/samples/NotePad/res/menu/editor_options_menu.xml b/samples/NotePad/res/menu/editor_options_menu.xml
index ce385a645..306139ae5 100644
--- a/samples/NotePad/res/menu/editor_options_menu.xml
+++ b/samples/NotePad/res/menu/editor_options_menu.xml
@@ -4,12 +4,12 @@
android:icon="@drawable/ic_menu_save"
android:alphabeticShortcut='s'
android:title="@string/menu_save"
- android:showAsAction="always" />
+ android:showAsAction="ifRoom|withText" />
<item android:id="@+id/menu_revert"
android:icon="@drawable/ic_menu_revert"
android:title="@string/menu_revert" />
<item android:id="@+id/menu_delete"
android:icon="@drawable/ic_menu_delete"
android:title="@string/menu_delete"
- android:showAsAction="always" />
+ android:showAsAction="ifRoom|withText" />
</menu> \ No newline at end of file