mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
25 lines
865 B
XML
25 lines
865 B
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="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/rounded_ripple"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingVertical="5dp">
|
||
|
|
||
|
<de.hdodenhof.circleimageview.CircleImageView
|
||
|
android:id="@+id/iconIV"
|
||
|
android:layout_width="100dp"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_gravity="center"
|
||
|
tools:src="@mipmap/ic_gradient" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/iconName"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:ellipsize="end"
|
||
|
android:maxLines="1" />
|
||
|
|
||
|
</LinearLayout>
|