MinimalBible-Legacy/MinimalBible/res/layout/list_download_items.xml

42 lines
1.5 KiB
XML
Raw Normal View History

2014-05-05 04:07:58 -04:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp" >
2014-05-05 04:07:58 -04:00
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/img_download_icon"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
2014-05-05 04:07:58 -04:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/txt_download_item_name"
android:ellipsize="end"
android:maxLines="1"
android:textAppearance="?android:attr/textAppearanceMedium"
2014-05-05 04:07:58 -04:00
android:layout_toRightOf="@+id/img_download_icon"
android:layout_toLeftOf="@+id/download_ibtn_download" />
2014-05-05 04:07:58 -04:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/download_txt_item_acronym"
android:paddingTop="4dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_toRightOf="@+id/img_download_icon"
android:layout_below="@+id/txt_download_item_name"/>
2014-05-05 04:07:58 -04:00
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_action_download"
2014-05-05 04:07:58 -04:00
android:layout_alignParentEnd="true"
android:id="@+id/download_ibtn_download"
2014-05-05 04:07:58 -04:00
style="@style/AppBaseTheme.Borderless" />
</RelativeLayout>