2010-08-16 21:02:39 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-01-12 15:33:37 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2010-08-16 21:02:39 -04:00
|
|
|
android:paddingLeft="3dip"
|
|
|
|
android:paddingRight="?android:attr/scrollbarSize"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:singleLine="true" >
|
2010-08-16 21:02:39 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
2010-08-16 21:02:39 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:paddingRight="5dip" >
|
2010-08-16 21:02:39 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserId"
|
|
|
|
android:layout_width="wrap_content"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Main User ID"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-08-16 21:02:39 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserIdRest"
|
|
|
|
android:layout_width="wrap_content"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="<user@somewhere.com>"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2010-08-16 21:02:39 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="right"
|
|
|
|
android:minWidth="90dip"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="3dip" >
|
2010-08-16 21:02:39 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/keyId"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2010-08-16 21:02:39 -04:00
|
|
|
android:text="BBBBBBBB"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:typeface="monospace" />
|
2010-08-16 21:02:39 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/algorithm"
|
|
|
|
android:layout_width="wrap_content"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2010-08-16 21:02:39 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="#e00" />
|
2010-08-16 21:02:39 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/list"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="match_parent"
|
2010-08-16 21:02:39 -04:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_marginLeft="30dip"
|
|
|
|
android:orientation="vertical" >
|
2010-08-16 21:02:39 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-12 15:33:37 -05:00
|
|
|
</LinearLayout>
|