2016-04-03 00:50:45 +02: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="wrap_content"
|
|
|
|
android:background="?android:attr/activatedBackgroundIndicator"
|
|
|
|
android:padding="4dp" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/item_image"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:contentDescription="@string/candidate_item_device_image" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toEndOf="@+id/item_image"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="4dp"
|
|
|
|
android:paddingEnd="4dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/item_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scrollHorizontally="false"
|
2016-10-28 22:18:08 +02:00
|
|
|
|
2016-04-03 00:50:45 +02:00
|
|
|
style="@style/Base.TextAppearance.AppCompat.Body1"
|
2016-10-28 22:18:08 +02:00
|
|
|
android:text="Item Name"/>
|
2016-04-03 00:50:45 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/item_details"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Base.TextAppearance.AppCompat.Body2"
|
|
|
|
android:text="Item Description"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|