2014-03-31 14:04:05 -04: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="vertical"
|
2014-04-01 09:04:54 -04:00
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingLeft="16dp">
|
2014-03-31 14:04:05 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/sign"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/label_sign" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="4dip">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserId"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
2014-04-01 09:04:54 -04:00
|
|
|
android:text=""
|
2014-03-31 14:04:05 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserIdRest"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
2014-04-01 09:04:54 -04:00
|
|
|
android:text=""
|
2014-03-31 14:04:05 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-01 09:04:54 -04:00
|
|
|
android:orientation="horizontal">
|
2014-03-31 14:04:05 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/label_selectPublicKeys"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/label_select_public_keys"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
|
|
|
android:id="@+id/btn_selectEncryptKeys"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_margin="4dp"
|
|
|
|
android:text="@string/btn_select_encrypt_keys"
|
|
|
|
bootstrapbutton:bb_icon_left="fa-user"
|
|
|
|
bootstrapbutton:bb_size="default"
|
|
|
|
bootstrapbutton:bb_type="default" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|