- 将 SelectDishActivity 重命名为 CookingModeActivity - 将 PrepareCookActivity 重命名为 PrepareFoodActivity - 将 SamplingListActivity 重命名为 SamplingModeActivity - 更新 AndroidManifest.xml 中的活动声明 - 修改 DishListFragment 中的相关引用 - 注释掉 DishSamplingActivity 的完整实现代码 - 更新 DeviceConfigFragment 中的活动跳转逻辑 - 优化 CookingModeActivity 的视图绑定方式 - 更新相关导入包路径和类引用
106 lines
3.9 KiB
XML
106 lines
3.9 KiB
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:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:background="@drawable/bg_other_page">
|
|
|
|
<RadioGroup
|
|
android:id="@+id/dishRadioGroup"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="88dp"
|
|
android:layout_marginTop="15dp"
|
|
android:orientation="horizontal">
|
|
|
|
<RadioButton
|
|
android:id="@+id/rbSamplingCooking"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="30dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/breakfast_bg"
|
|
android:button="@null"
|
|
android:checked="true"
|
|
android:gravity="center"
|
|
android:text="@string/rb_sampling_cooking"
|
|
android:textColor="@color/breakfast_font"
|
|
android:textSize="30sp"
|
|
android:textStyle="bold" />
|
|
|
|
|
|
<RadioButton
|
|
android:id="@+id/rbSamplingFinished"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="9dp"
|
|
android:layout_marginEnd="30dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/breakfast_bg"
|
|
android:button="@null"
|
|
android:checked="false"
|
|
android:gravity="center"
|
|
android:text="@string/rb_sampling_finished"
|
|
android:textColor="@color/breakfast_font"
|
|
android:textSize="30sp"
|
|
android:textStyle="bold" />
|
|
</RadioGroup>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:layout_marginTop="30dp"
|
|
android:layout_marginStart="30dp"
|
|
android:layout_marginEnd="30dp"
|
|
android:background="@drawable/shape_white_30_corners">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/dish_list"
|
|
android:textColor="@color/black666"
|
|
android:textSize="28sp"
|
|
android:visibility="gone"/>
|
|
|
|
<com.scwang.smart.refresh.layout.SmartRefreshLayout
|
|
android:id="@+id/refreshLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="7dp">
|
|
|
|
<com.scwang.smart.refresh.header.ClassicsHeader
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rvSamplingList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:overScrollMode="never"
|
|
tools:listitem="@layout/list_item_dish" />
|
|
|
|
<com.scwang.smart.refresh.footer.ClassicsFooter
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</com.scwang.smart.refresh.layout.SmartRefreshLayout>
|
|
</LinearLayout>
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/btnAddSampling"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="90dp"
|
|
android:layout_margin="30dp"
|
|
android:background="@drawable/shape_green_bg"
|
|
android:gravity="center"
|
|
android:text="@string/add_sampling"
|
|
android:textColor="@color/white"
|
|
android:textSize="32sp"
|
|
android:textStyle="bold" />
|
|
<!-- android:background="@drawable/ripple_effect_green"-->
|
|
|
|
</LinearLayout> |