24 lines
900 B
XML
Raw Normal View History

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