mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
29 lines
993 B
XML
29 lines
993 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:layout_marginHorizontal="10dp"
|
|
android:background="@drawable/rounded_ripple"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="10dp">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/appIconIV"
|
|
android:layout_width="75dp"
|
|
android:layout_height="75dp"
|
|
android:layout_gravity="center"
|
|
android:padding="10dp"
|
|
tools:src="@mipmap/ic_launcher_round" />
|
|
|
|
<TextView
|
|
android:id="@+id/appNameTV"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textSize="11sp" />
|
|
|
|
</LinearLayout>
|