SmsForwarder/app/src/main/res/layout/menu_left_drawer.xml
pppscn 6473b3eb7c 优化:MainActivity 内容填充方式(避免一次性加载多个Fragment)&& 提升APP启动速度与稳定性
优化:左滑菜单 与 TabBar 美化
精简:界面调整 & 去除不常用资源
整理:code review
2023-12-19 23:52:50 +08:00

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>