2010-04-06 15:54:51 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-10-28 18:51:03 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-02 16:01:25 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-10-28 18:51:03 -04:00
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:layout_marginRight="?android:attr/scrollbarSize"
|
|
|
|
android:orientation="vertical"
|
2014-01-02 16:01:25 -05:00
|
|
|
android:paddingLeft="8dp"
|
2012-10-28 18:51:03 -04:00
|
|
|
android:singleLine="true" >
|
2010-04-06 15:54:51 -04:00
|
|
|
|
2012-10-28 18:51:03 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserId"
|
|
|
|
android:layout_width="wrap_content"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-10-28 18:51:03 -04:00
|
|
|
android:text="Main User ID"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-10-28 18:51:03 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserIdRest"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="<user@example.com>"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2010-04-06 15:54:51 -04:00
|
|
|
|
2012-10-28 18:51:03 -04:00
|
|
|
</LinearLayout>
|