54 lines
No EOL
2 KiB
XML
54 lines
No EOL
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:background="?attr/dashboard_button"
|
|
android:layout_height="@dimen/dashListItemHeight">
|
|
<View android:layout_width="match_parent"
|
|
android:id="@+id/divider"
|
|
android:background="?attr/dashboard_divider"
|
|
android:layout_height="1dp"/>
|
|
<LinearLayout android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<ImageView android:id="@+id/icon"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="@dimen/dashFavIconMargin"
|
|
android:layout_marginRight="@dimen/dashFavIconMargin"
|
|
android:layout_width="@dimen/dashNoteIconSize"
|
|
android:layout_height="@dimen/dashNoteIconSize"/>
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content">
|
|
<TextView android:id="@+id/name"
|
|
android:textSize="@dimen/dashFavNameTextSize"
|
|
android:lines="1"
|
|
android:ellipsize="end"
|
|
android:textColor="@color/dashboard_black"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView android:id="@+id/descr"
|
|
android:textSize="@dimen/showAllButtonTextSize"
|
|
android:lines="1"
|
|
android:ellipsize="end"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageButton android:id="@+id/play"
|
|
android:src="@drawable/ic_play_light"
|
|
android:background="?attr/dashboard_button"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="@dimen/dashFavIconMargin"
|
|
android:layout_width="@dimen/dashListItemHeight"
|
|
android:layout_height="@dimen/dashListItemHeight"/>
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |