21 lines
705 B
XML
21 lines
705 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<View
|
||
|
android:id="@+id/anchor"
|
||
|
android:layout_width="48dp"
|
||
|
android:layout_height="2dp"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:background="@color/signal_icon_tint_tab_unselected" />
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/quotes_list"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
</LinearLayout>
|