36 lines
1.6 KiB
XML
36 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/item_rl_content"
|
|
android:paddingLeft="@dimen/common_20dp"
|
|
android:paddingRight="@dimen/common_20dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/servo_mode_item_height">
|
|
<ImageView
|
|
android:id="@+id/item_servo_icon"
|
|
android:layout_width="@dimen/servo_mode_item_servo_width"
|
|
android:layout_height="@dimen/servo_mode_item_servo_width"
|
|
android:src="@mipmap/ic_servo_angle"
|
|
android:layout_centerVertical="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/common_16sp"
|
|
android:textColor="@color/txt_596F80"
|
|
android:id="@+id/item_servo_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/common_15dp"
|
|
android:layout_toRightOf="@+id/item_servo_icon"
|
|
android:layout_centerVertical="true"/>
|
|
<com.kyleduo.switchbutton.SwitchButton
|
|
android:id="@+id/item_servo_sb"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentEnd="true"
|
|
app:kswBackColor="#e9e9f2"
|
|
app:kswThumbDrawable="@drawable/servo_circle_mode"
|
|
app:kswThumbHeight="@dimen/servo_mode_switch_thumb"
|
|
app:kswThumbMargin="@dimen/servo_mode_switch_thumb_margin"
|
|
app:kswThumbRangeRatio="3"
|
|
app:kswThumbWidth="@dimen/servo_mode_switch_thumb"/>
|
|
</RelativeLayout>
|