| <?xml version="1.0" encoding="utf-8"?> |
| |
| <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_height="match_parent" |
| android:layout_width="match_parent" |
| android:orientation="vertical" |
| > |
| |
| <TableLayout |
| android:layout_height="match_parent" |
| android:layout_width="match_parent" |
| android:orientation="vertical" |
| > |
| |
| <Button |
| android:text="@string/GLOBAL_BUTTON_SWITCH_INPUT_METHOD" |
| android:onClick="switchInputMethod" |
| /> |
| |
| <Button |
| android:text="@string/SETTINGS_SCREEN_MAIN" |
| android:onClick="launchSettingsActivity" |
| /> |
| |
| <Button |
| android:text="@string/GLOBAL_BUTTON_VIEW_USER_GUIDE" |
| android:onClick="viewUserGuide" |
| /> |
| |
| <Button |
| android:text="@string/GLOBAL_BUTTON_BROWSE_WEB_SITE" |
| android:onClick="browseWebSite" |
| /> |
| |
| <Button |
| android:text="@string/GLOBAL_BUTTON_BROWSE_COMMUNITY_MESSAGES" |
| android:onClick="browseCommunityMessages" |
| /> |
| |
| <Button |
| android:text="@string/GLOBAL_BUTTON_POST_COMMUNITY_MESSAGE" |
| android:onClick="postCommunityMessage" |
| /> |
| |
| <Button |
| android:text="@string/GLOBAL_BUTTON_MANAGE_COMMUNITY_MEMBERSHIP" |
| android:onClick="manageCommunityMembership" |
| /> |
| |
| <Button |
| android:id="@+id/GLOBAL_BUTTON_UPDATE_APPLICATION" |
| android:text="@string/GLOBAL_BUTTON_UPDATE_APPLICATION" |
| android:onClick="updateApplication" |
| /> |
| |
| <CheckBox |
| android:id="@+id/GLOBAL_CHECKBOX_DEVELOPER_BUILD" |
| android:text="@string/GLOBAL_CHECKBOX_DEVELOPER_BUILD" |
| /> |
| |
| <CheckBox |
| android:id="@+id/GLOBAL_CHECKBOX_ALLOW_DOWNGRADE" |
| android:text="@string/GLOBAL_CHECKBOX_ALLOW_DOWNGRADE" |
| /> |
| |
| <Button |
| android:text="@string/about_label_activity" |
| android:onClick="launchAboutActivity" |
| /> |
| </TableLayout> |
| </ScrollView> |