64 lines
No EOL
1.9 KiB
XML
64 lines
No EOL
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="@dimen/list_item_height"
|
|
android:orientation="vertical"
|
|
android:background="?attr/expandable_list_item_background"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="3dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="25dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="2dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/additional"
|
|
style="@style/ListText.Small"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
tools:text="@string/lorem_ipsum"
|
|
android:maxLines="2"
|
|
android:layout_marginLeft="2dp"
|
|
android:layout_marginRight="3dp"
|
|
android:textSize="@dimen/dashFavNameTextSize"/>
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
style="@style/ListText.Small"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
tools:text="@string/lorem_ipsum"
|
|
android:layout_marginLeft="5dp"
|
|
android:textSize="@dimen/dashFavNameTextSize"
|
|
android:layout_weight="1"
|
|
android:paddingTop="2dp"/>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
style="@style/ListText.Small"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:textSize="@dimen/dashFavNameTextSize"
|
|
android:maxLines="25"/>
|
|
|
|
</LinearLayout> |