2014-01-18 12:44:34 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/select_secret_key_select_key_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2014-01-18 14:16:34 -05:00
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
android:layout_marginTop="4dp"
|
2014-01-18 12:44:34 -05:00
|
|
|
android:text="@string/api_settings_select_key"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-key"
|
|
|
|
bootstrapbutton:bb_size="default"
|
|
|
|
bootstrapbutton:bb_type="default" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-18 14:16:34 -05:00
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:layout_marginTop="4dp"
|
2014-01-18 12:44:34 -05:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="16dp" >
|
|
|
|
|
2014-01-18 13:54:27 -05:00
|
|
|
<!-- Has been made focusable to display error messages with setError -->
|
|
|
|
|
2014-01-18 12:44:34 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/select_secret_key_user_id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:ellipsize="end"
|
2014-01-18 13:54:27 -05:00
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
2014-01-18 12:44:34 -05:00
|
|
|
android:singleLine="true"
|
|
|
|
android:text="@string/api_settings_no_key"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/select_secret_key_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>
|