[m1]
[适配+部分页面]
This commit is contained in:
yangyakun
2023-01-30 12:08:59 +08:00
parent a9291ac5bc
commit b9213fee35
7 changed files with 80 additions and 28 deletions

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#B3EFF6FF"/>
</shape>

View File

@@ -11,8 +11,8 @@
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintEnd_toStartOf="@+id/cb_bp_setting_soft"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
android:layout_width="@dimen/dp_95"
android:layout_height="@dimen/dp_95"/>
<ImageView
android:id="@+id/cb_bp_setting_soft"
@@ -20,8 +20,8 @@
app:layout_constraintStart_toEndOf="@+id/cb_bp_video_player"
app:layout_constraintEnd_toStartOf="@+id/cb_bp_setting_device"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
android:layout_width="@dimen/dp_95"
android:layout_height="@dimen/dp_95"/>
<ImageView
android:id="@+id/cb_bp_setting_device"
@@ -29,8 +29,8 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/cb_bp_setting_soft"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
android:layout_width="@dimen/dp_95"
android:layout_height="@dimen/dp_95"/>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -21,8 +21,8 @@
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintEnd_toStartOf="@+id/cb_bp_setting_soft"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
android:layout_width="@dimen/dp_95"
android:layout_height="@dimen/dp_95"/>
<CheckBox
android:id="@+id/cb_bp_setting_soft"
@@ -31,8 +31,8 @@
app:layout_constraintStart_toEndOf="@+id/cb_bp_video_player"
app:layout_constraintEnd_toStartOf="@+id/cb_bp_setting_device"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
android:layout_width="@dimen/dp_95"
android:layout_height="@dimen/dp_95"/>
<CheckBox
android:id="@+id/cb_bp_setting_device"
@@ -41,8 +41,8 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/cb_bp_setting_soft"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
android:layout_width="@dimen/dp_95"
android:layout_height="@dimen/dp_95"/>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -1,17 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
xmlns:app="http://schemas.android.com/apk/res-auto">
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
app:layout_constraintDimensionRatio="3:1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:background="@android:color/holo_green_dark"
android:layout_width="0dp"
android:layout_height="0dp">
android:layout_height="0dp"
android:background="@drawable/bus_p_function_setting_soft_b_shape"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintDimensionRatio="3:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintWidth_percent="0.78125">
<TextView
android:id="@+id/tv_setting_aircondition"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="空调"
app:layout_constraintBottom_toTopOf="@+id/tv_setting_lighting"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed" />
<TextView
android:id="@+id/tv_setting_lighting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="灯光"
app:layout_constraintBottom_toTopOf="@+id/tv_setting_voice"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_setting_aircondition" />
<TextView
android:id="@+id/tv_setting_voice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="声音"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_setting_lighting" />
</androidx.constraintlayout.widget.ConstraintLayout>