22 lines
827 B
XML
22 lines
827 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:layout_gravity="center_horizontal"
|
|
android:id="@+id/iv_icon"
|
|
android:layout_width="@dimen/servo_width"
|
|
android:layout_height="@dimen/servo_width"
|
|
android:src="@mipmap/servo_angle"
|
|
android:scaleType="fitCenter"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_12sp"
|
|
android:textColor="@color/theme_txt_light"
|
|
android:gravity="center"
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="舵机0"/>
|
|
</LinearLayout>
|