LibreTube/app/src/main/res/layout/searchsuggestion_row.xml

25 lines
876 B
XML
Raw Normal View History

2022-06-10 14:28:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2022-06-13 13:26:36 +05:30
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-06-10 14:28:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-06-13 13:26:36 +05:30
android:layout_marginHorizontal="8dp"
2022-06-13 19:45:02 +05:30
android:paddingVertical="8dp"
2022-06-10 14:28:33 +05:30
android:background="?android:attr/selectableItemBackground">
<ImageView
android:id="@+id/search_icon"
2022-06-13 13:26:36 +05:30
android:layout_width="18dp"
android:layout_height="18dp"
2022-06-10 14:28:33 +05:30
android:src="@drawable/ic_search"
2022-06-13 13:26:36 +05:30
android:layout_marginTop="3dp"
android:layout_marginHorizontal="5dp" />
2022-06-10 14:28:33 +05:30
<TextView
android:id="@+id/suggestion_text"
2022-06-13 13:26:36 +05:30
android:layout_width="match_parent"
2022-06-10 14:28:33 +05:30
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
2022-06-13 13:26:36 +05:30
android:layout_gravity="center" />
2022-06-10 14:28:33 +05:30
2022-06-13 13:26:36 +05:30
</LinearLayout>