55 lines
2.4 KiB
XML
55 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@drawable/bg_mode_setting"
|
|
android:padding="@dimen/servo_mode_card_padding"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TextView
|
|
android:textSize="@dimen/theme_15sp"
|
|
android:textColor="@color/theme_txt"
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/servo_mode_title_top"
|
|
android:text="@string/servo_mode_angle"
|
|
android:layout_centerHorizontal="true"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_drag"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="@dimen/servo_mode_rv_top"
|
|
android:layout_marginBottom="@dimen/servo_mode_drag_rv_bottom"
|
|
android:layout_below="@+id/tv_title"
|
|
android:layout_centerHorizontal="true"/>
|
|
<RelativeLayout
|
|
android:id="@+id/rl_servo_null"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="@dimen/servo_mode_empty"
|
|
android:layout_below="@+id/tv_title">
|
|
<ImageView
|
|
android:id="@+id/iv_servo_null"
|
|
android:layout_width="@dimen/servo_mode_icon_null"
|
|
android:layout_height="@dimen/servo_mode_icon_null"
|
|
android:src="@drawable/ic_angle_null"
|
|
android:scaleType="fitCenter"
|
|
android:layout_centerHorizontal="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_13sp"
|
|
android:textColor="@color/theme_txt_light"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:id="@+id/tv_servo_null_tips"
|
|
android:paddingLeft="@dimen/padding_20"
|
|
android:paddingRight="@dimen/padding_20"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/servo_mode_icon_null_top"
|
|
android:text="@string/servo_mode_angle_tips"
|
|
android:maxLines="4"
|
|
android:layout_below="@+id/iv_servo_null"
|
|
android:layout_centerHorizontal="true"/>
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|