Felix Ableitner
105bb9de94
- add braces to if/for - indent with tabs instead of spaces - remove trailing whitespaces
39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
android:orientation="horizontal" >
|
|
|
|
<com.github.nutomic.controldlna.utility.RemoteImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="?android:attr/listPreferredItemHeight"
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
android:padding="4dip"
|
|
android:contentDescription="@string/album_art" />
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:layout_marginTop="4dip" >
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:lines="1"
|
|
android:ellipsize="end" />
|
|
|
|
<TextView
|
|
android:id="@+id/subtitle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:lines="1"
|
|
android:ellipsize="end" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|