Merge branch 'dev_MogoAP_eagle-930_210926_8.0.12' into dev/dev_eagle_architecture_upgrade2
This commit is contained in:
@@ -15,7 +15,9 @@
|
||||
android:paddingLeft="@dimen/dp_40"
|
||||
android:paddingTop="@dimen/dp_32"
|
||||
android:text="模块名称"
|
||||
android:textColor="#FFF"
|
||||
android:textSize="@dimen/dp_38"
|
||||
android:textStyle="bold"
|
||||
app:layout_constraintHorizontal_chainStyle="spread"
|
||||
app:layout_constraintHorizontal_weight="1"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
@@ -30,7 +32,9 @@
|
||||
android:paddingLeft="@dimen/dp_40"
|
||||
android:paddingTop="@dimen/dp_32"
|
||||
android:text="运行状态"
|
||||
android:textColor="#FFF"
|
||||
android:textSize="@dimen/dp_38"
|
||||
android:textStyle="bold"
|
||||
app:layout_constraintHorizontal_chainStyle="spread"
|
||||
app:layout_constraintHorizontal_weight="1"
|
||||
app:layout_constraintLeft_toRightOf="@+id/title_one"
|
||||
@@ -45,7 +49,9 @@
|
||||
android:paddingLeft="@dimen/dp_40"
|
||||
android:paddingTop="@dimen/dp_32"
|
||||
android:text="模块名称"
|
||||
android:textColor="#FFF"
|
||||
android:textSize="@dimen/dp_38"
|
||||
android:textStyle="bold"
|
||||
app:layout_constraintHorizontal_chainStyle="spread"
|
||||
app:layout_constraintHorizontal_weight="1"
|
||||
app:layout_constraintLeft_toRightOf="@+id/title_two"
|
||||
@@ -60,7 +66,9 @@
|
||||
android:paddingLeft="@dimen/dp_40"
|
||||
android:paddingTop="@dimen/dp_32"
|
||||
android:text="运行状态"
|
||||
android:textColor="#FFF"
|
||||
android:textSize="@dimen/dp_38"
|
||||
android:textStyle="bold"
|
||||
app:layout_constraintHorizontal_chainStyle="spread"
|
||||
app:layout_constraintHorizontal_weight="1"
|
||||
app:layout_constraintLeft_toRightOf="@+id/title_thr"
|
||||
|
||||
@@ -64,8 +64,8 @@
|
||||
<com.mogo.eagle.core.function.hmi.ui.widget.CheckStatusView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_380"
|
||||
android:layout_marginBottom="@dimen/dp_42"
|
||||
android:layout_marginLeft="@dimen/module_hmi_check_left"
|
||||
android:layout_marginBottom="@dimen/dp_38"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent" />
|
||||
|
||||
|
||||
@@ -8,13 +8,13 @@
|
||||
<!--车辆检测入口-->
|
||||
<TextView
|
||||
android:id="@+id/moduleHmiCheck"
|
||||
android:layout_width="@dimen/dp_128"
|
||||
android:layout_height="@dimen/dp_128"
|
||||
android:layout_width="@dimen/module_hmi_check_size"
|
||||
android:layout_height="@dimen/module_hmi_check_size"
|
||||
android:background="@drawable/module_ext_check"
|
||||
android:gravity="center"
|
||||
android:text="检测"
|
||||
android:textColor="#fff"
|
||||
android:textSize="@dimen/module_hmi_btn_text_size"
|
||||
android:textSize="@dimen/dp_38"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent" />
|
||||
|
||||
|
||||
@@ -1,14 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<size
|
||||
android:width="@dimen/module_hmi_check_size"
|
||||
android:height="@dimen/module_hmi_check_size" />
|
||||
<!--//填充-->
|
||||
<solid android:color="@color/module_switch_map_bg" />
|
||||
<!--//描边-->
|
||||
<stroke
|
||||
android:width="2px"
|
||||
android:color="@color/module_switch_map_bg" />
|
||||
<!-- 边 -->
|
||||
<item>
|
||||
<shape android:shape="oval">
|
||||
<padding
|
||||
android:bottom="1dp"
|
||||
android:left="1dp"
|
||||
android:right="1dp"
|
||||
android:top="1dp" />
|
||||
<solid android:color="#20151D45" />
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<shape android:shape="oval">
|
||||
<padding
|
||||
android:bottom="2dp"
|
||||
android:left="2dp"
|
||||
android:right="2dp"
|
||||
android:top="2dp" />
|
||||
<solid android:color="#30151D45" />
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<shape android:shape="oval">
|
||||
<padding
|
||||
android:bottom="2dp"
|
||||
android:left="2dp"
|
||||
android:right="2dp"
|
||||
android:top="2dp" />
|
||||
<solid android:color="#50151D45" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
</shape>
|
||||
<!-- 中心背景 -->
|
||||
<item>
|
||||
<shape
|
||||
android:shape="oval"
|
||||
android:useLevel="false">
|
||||
<size
|
||||
android:width="@dimen/module_hmi_check_size"
|
||||
android:height="@dimen/module_hmi_check_size" />
|
||||
<!-- 实心 -->
|
||||
<solid android:color="@color/module_switch_map_bg" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
|
||||
</layer-list>
|
||||
@@ -27,7 +27,8 @@
|
||||
<dimen name="module_hmi_autopilot_status_bg_sm_radius">30px</dimen>
|
||||
<dimen name="module_hmi_autopilot_status_bg_big_radius">70px</dimen>
|
||||
|
||||
<dimen name="module_hmi_check_size">128px</dimen>
|
||||
<dimen name="module_hmi_check_size">138px</dimen>
|
||||
<dimen name="module_hmi_check_left">368px</dimen>
|
||||
<dimen name="module_hmi_btn_size">60px</dimen>
|
||||
<dimen name="module_hmi_btn_text_size">44px</dimen>
|
||||
|
||||
|
||||
@@ -27,7 +27,8 @@
|
||||
<dimen name="module_hmi_autopilot_status_bg_sm_radius">20px</dimen>
|
||||
<dimen name="module_hmi_autopilot_status_bg_big_radius">50px</dimen>
|
||||
|
||||
<dimen name="module_hmi_check_size">128px</dimen>
|
||||
<dimen name="module_hmi_check_size">138px</dimen>
|
||||
<dimen name="module_hmi_check_left">368px</dimen>
|
||||
<dimen name="module_hmi_btn_size">38px</dimen>
|
||||
<dimen name="module_hmi_btn_text_size">33px</dimen>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user