2013-09-04 16:04:27 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="3dip" >
|
|
|
|
|
|
|
|
<TextView
|
2013-09-04 17:47:40 -04:00
|
|
|
android:id="@+id/api_app_settings_selected_key"
|
2013-09-04 16:04:27 -04:00
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
2013-09-04 17:47:40 -04:00
|
|
|
android:text="@string/api_settings_no_key"
|
2013-09-04 16:04:27 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<Button
|
2013-09-04 17:47:40 -04:00
|
|
|
android:id="@+id/api_app_settings_select_key_button"
|
2013-09-04 16:04:27 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2013-09-04 17:47:40 -04:00
|
|
|
android:text="@string/api_settings_select_key" />
|
2013-09-04 16:04:27 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/api_app_settings_advanced_button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-04 17:47:40 -04:00
|
|
|
android:text="@string/api_settings_show_advanced" />
|
2013-09-04 16:04:27 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/api_app_settings_advanced"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-04 17:47:40 -04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:visibility="invisible" >
|
2013-09-04 16:04:27 -04:00
|
|
|
|
|
|
|
<CheckBox
|
2013-09-04 17:47:40 -04:00
|
|
|
android:id="@+id/api_app_ascii_armor"
|
2013-09-04 16:04:27 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_asciiArmour" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|