k-9/res/layout/theme_pack_list_item.xml

32 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="center_vertical"
android:paddingLeft="8dp"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight">
<ImageView
android:id="@+id/theme_pack_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="12dp"
android:layout_alignParentLeft="true"/>
<TextView
android:id="@+id/theme_pack_name"
android:layout_toRightOf="@id/theme_pack_icon"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/theme_pack_author"
android:textColor="?android:attr/textColorSecondary"
android:layout_toRightOf="@id/theme_pack_icon"
android:layout_below="@id/theme_pack_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>