Files
VscoolOS/app/src/main/res/layout/window_menu.xml
Fanhuitong 4657e3ad2b version:1.0.1
update:优化屏幕适配,更换图标
bugfixes:
2024-07-13 15:22:39 +08:00

67 lines
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="120dp"
android:layout_height="wrap_content"
android:background="@color/gray"
android:orientation="vertical">
<TextView
android:id="@+id/tv_menuOne"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="10dp"
android:text="只响一次"
android:textColor="@color/black"
android:textSize="12sp" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/white" />
<TextView
android:id="@+id/tv_menuTwo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="10dp"
android:text="每天"
android:textColor="@color/black"
android:textSize="12sp" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/white" />
<TextView
android:id="@+id/tv_menuThree"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="10dp"
android:text="周一至周五"
android:textColor="@color/black"
android:textSize="12sp" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/white" />
<TextView
android:id="@+id/tv_menuFour"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="10dp"
android:text="周六至周日"
android:textColor="@color/black"
android:textSize="12sp" />
</LinearLayout>
</FrameLayout>