2019-04-28 20:43:54 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 18:24:02 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-28 20:43:54 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="2dp"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:background="?attr/focused_selector"
|
2019-04-28 20:43:54 +00:00
|
|
|
android:clickable="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:focusable="true">
|
2019-04-28 20:43:54 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:minWidth="72dp"
|
|
|
|
android:orientation="vertical"
|
2019-10-07 05:33:29 +00:00
|
|
|
android:padding="4dp">
|
2019-04-28 20:43:54 +00:00
|
|
|
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
|
|
android:id="@+id/thumbnail_view"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:contentDescription="@string/list_thumbnail_view_description"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:src="@drawable/buddy_channel_item" />
|
2019-04-28 20:43:54 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:lines="1"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:textSize="10sp"
|
|
|
|
tools:ignore="SmallSp"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:text="Channel Title, Lorem ipsum" />
|
2019-04-28 20:43:54 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/selected_highlight"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="#9A000000"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<ImageView
|
2019-10-07 05:33:29 +00:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_gravity="top|center_horizontal"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_marginTop="4dp"
|
2019-04-28 20:43:54 +00:00
|
|
|
android:scaleType="centerInside"
|
|
|
|
app:srcCompat="@drawable/ic_done_white_24dp"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:ignore="ContentDescription" />
|
2019-04-28 20:43:54 +00:00
|
|
|
</FrameLayout>
|
2020-10-09 18:24:02 +00:00
|
|
|
</FrameLayout>
|