mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-22 10:47:41 +08:00
27 lines
890 B
XML
27 lines
890 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:id="@+id/ll_menu"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#E7F3FB"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/include_navigation_header" />
|
|
|
|
<Space
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="10dp" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/list"
|
|
android:layout_width="240dp"
|
|
android:layout_height="wrap_content"
|
|
android:overScrollMode="never"
|
|
tools:listitem="@layout/menu_item_option" />
|
|
|
|
<Space
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="10dp" />
|
|
|
|
</LinearLayout> |