19 lines
904 B
XML
19 lines
904 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<com.ubt.jimu.controller.view.DragRecycleView
|
|
android:id="@+id/drv_angle"
|
|
android:layout_width="@dimen/servo_mode_card_width"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/servo_mode_rv_hor"
|
|
android:layout_marginBottom="@dimen/servo_mode_rv_bottom"/>
|
|
<com.ubt.jimu.controller.view.DragRecycleView
|
|
android:id="@+id/drv_turn"
|
|
android:layout_width="@dimen/servo_mode_card_width"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/servo_mode_rv_hor"
|
|
android:layout_marginBottom="@dimen/servo_mode_rv_bottom"
|
|
android:layout_toRightOf="@+id/drv_angle"/>
|
|
</RelativeLayout>
|