mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 00:25:10 -04:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="50dip"
|
|
android:orientation="horizontal">
|
|
<TextView android:id="@+id/text1"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:paddingLeft="6dip"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
/>
|
|
<TextView android:id="@+id/text2"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/text1"
|
|
android:layout_centerVertical="true"
|
|
android:paddingLeft="6dip"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
/>
|
|
</RelativeLayout>
|