24 lines
983 B
XML
24 lines
983 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<include
|
|
android:id="@+id/servo_mode_title"
|
|
layout="@layout/layout_server_mode_title"/>
|
|
<include
|
|
android:id="@+id/servo_mode_des"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="@dimen/servo_mode_des_top"
|
|
android:layout_centerHorizontal="true"
|
|
layout="@layout/servo_mode_setting_des"/>
|
|
<ViewStub
|
|
android:id="@+id/vs_mode_setting"
|
|
android:layout="@layout/servo_mode_setting"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/servo_mode_content_top"
|
|
android:layout_centerHorizontal="true"/>
|
|
</RelativeLayout>
|