50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<!-- 底部导航菜单 -->
|
|
<LinearLayout
|
|
android:id="@+id/bottomMenu"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@android:color/transparent"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_marginStart="15dp"
|
|
android:layout_marginEnd="15dp"
|
|
android:elevation="8dp">
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/btnDeviceConfig"
|
|
android:layout_width="0dp"
|
|
android:layout_height="70dp"
|
|
android:layout_weight="1"
|
|
android:text="设备配置"
|
|
android:textSize="28sp"
|
|
android:textStyle="bold"
|
|
android:background="@android:color/transparent" />
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/btnFoodCollect"
|
|
android:layout_width="0dp"
|
|
android:layout_height="70dp"
|
|
android:layout_weight="1"
|
|
android:text="采集食材"
|
|
android:textSize="26sp"
|
|
android:background="@android:color/transparent" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Fragment 容器 -->
|
|
<FrameLayout
|
|
android:id="@+id/fragmentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
</LinearLayout>
|