2013-09-04 16:04:27 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-12-30 13:16:21 -05:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
2013-09-04 16:04:27 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<LinearLayout
|
2013-09-06 02:29:56 -04:00
|
|
|
android:layout_width="match_parent"
|
2013-12-30 13:16:21 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="3dip" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/api_app_settings_app_icon"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginRight="6dp"
|
|
|
|
android:src="@drawable/icon" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/api_app_settings_app_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@+id/api_app_settings_app_icon"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:text="Name (set in-code)"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2013-09-04 16:04:27 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-12-30 13:16:21 -05:00
|
|
|
android:orientation="horizontal" >
|
2013-09-06 02:29:56 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<Button
|
|
|
|
android:id="@+id/api_app_settings_select_key_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/api_settings_select_key" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="16dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/api_app_settings_user_id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="@string/api_settings_no_key"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/api_app_settings_user_id_rest"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text=""
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2013-09-04 16:04:27 -04:00
|
|
|
|
|
|
|
<Button
|
2013-12-30 13:16:21 -05:00
|
|
|
android:id="@+id/api_app_settings_advanced_button"
|
|
|
|
android:layout_width="match_parent"
|
2013-09-04 16:04:27 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-12-30 13:16:21 -05:00
|
|
|
android:text="@string/api_settings_show_advanced" />
|
2013-09-06 02:29:56 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2013-12-30 13:16:21 -05:00
|
|
|
android:id="@+id/api_app_settings_advanced"
|
|
|
|
android:layout_width="match_parent"
|
2013-09-06 02:29:56 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2013-12-30 13:16:21 -05:00
|
|
|
android:visibility="gone" >
|
2013-09-06 02:29:56 -04:00
|
|
|
|
|
|
|
<TextView
|
2013-12-30 13:16:21 -05:00
|
|
|
android:layout_width="match_parent"
|
2013-09-06 02:29:56 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-12-30 13:16:21 -05:00
|
|
|
android:text="@string/label_encryption_algorithm"
|
2013-09-06 02:29:56 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/api_app_settings_encryption_algorithm"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2013-09-06 02:29:56 -04:00
|
|
|
<TextView
|
2013-12-30 13:16:21 -05:00
|
|
|
android:layout_width="match_parent"
|
2013-09-06 02:29:56 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-12-30 13:16:21 -05:00
|
|
|
android:text="@string/label_hash_algorithm"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-09-04 16:04:27 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/api_app_settings_hash_algorithm"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2013-09-04 16:04:27 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/label_message_compression"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-09-09 06:59:53 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/api_app_settings_compression"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2013-09-09 06:59:53 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/api_settings_package_name"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-09-09 06:59:53 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/api_app_settings_package_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="com.example"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-09-09 06:59:53 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/api_settings_package_signature"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-09-09 06:59:53 -04:00
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/api_app_settings_package_signature"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Base64 encoded signature"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</LinearLayout>
|
2013-09-04 16:04:27 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
2013-12-30 13:16:21 -05:00
|
|
|
</ScrollView>
|