2014-03-28 19:11:07 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-04-13 19:11:08 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-28 19:11:07 -04:00
|
|
|
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
|
2014-04-13 19:11:08 -04:00
|
|
|
android:id="@+id/result"
|
|
|
|
android:orientation="vertical"
|
2014-03-28 19:11:07 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp">
|
|
|
|
|
2014-04-13 19:11:08 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/result_text"
|
2014-03-28 19:11:07 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-13 19:11:08 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:text="result text" />
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/result_signature"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="true"
|
|
|
|
android:orientation="horizontal">
|
2014-03-28 19:11:07 -04:00
|
|
|
|
2014-04-13 19:11:08 -04:00
|
|
|
<RelativeLayout
|
2014-03-28 19:11:07 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-13 19:11:08 -04:00
|
|
|
android:id="@+id/relativeLayout">
|
2014-03-28 19:11:07 -04:00
|
|
|
|
2014-04-13 19:11:08 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signature"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/signed_large" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signature_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/overlay_error" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserId"
|
2014-03-28 19:11:07 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-13 19:11:08 -04:00
|
|
|
android:layout_gravity="left"
|
|
|
|
android:text="@string/label_main_user_id"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_toRightOf="@+id/relativeLayout" />
|
2014-03-28 19:11:07 -04:00
|
|
|
|
2014-04-13 19:11:08 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserIdRest"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="left"
|
|
|
|
android:text="Main User Id Rest"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_below="@+id/mainUserId"
|
|
|
|
android:layout_toRightOf="@+id/relativeLayout" />
|
2014-03-28 19:11:07 -04:00
|
|
|
|
2014-04-13 19:11:08 -04:00
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/lookup_key"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/btn_lookup_key"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-download"
|
|
|
|
bootstrapbutton:bb_type="info"
|
|
|
|
bootstrapbutton:bb_size="small"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentEnd="true" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|