4
0
mirror of https://github.com/cwinfo/envayasms.git synced 2025-08-13 23:08:09 +00:00

add help screen

This commit is contained in:
Jesse Young
2011-09-12 19:06:03 -07:00
parent da334a04c9
commit 307f354deb
13 changed files with 83 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 969 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

19
res/layout/help.xml Executable file
View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#333333">
<ScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_weight="1">
<TextView
android:linksClickable="true"
android:drawablePadding="5px"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/help"
android:textColor="#FFFFFF"
android:layout_margin="5px">
</TextView>
</ScrollView>
</LinearLayout>

View File

@@ -1,12 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/settings"
android:icon="@drawable/ic_menu_settings"
android:icon="@drawable/ic_menu_equalizer"
android:title="@string/settings" />
<item android:id="@+id/test"
android:icon="@drawable/ic_menu_link"
android:title="@string/test" />
<item android:id="@+id/check_now"
<item android:id="@+id/check_now"
android:icon="@drawable/ic_menu_tick"
android:title="@string/check_now" />
<item android:id="@+id/help"
android:icon="@drawable/ic_menu_puzzle"
android:title="@string/help" />
</menu>

View File

@@ -4,4 +4,5 @@
<string name="settings">Settings</string>
<string name="test">Test Connection</string>
<string name="check_now">Check Messages</string>
<string name="help">Help</string>
</resources>