21 lines
877 B
XML
21 lines
877 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"
|
|
android:layout_centerInParent="true">
|
|
<ImageView
|
|
android:id="@+id/im_control_null"
|
|
android:background="@mipmap/control_null"
|
|
android:layout_width="@dimen/control_null_w"
|
|
android:layout_height="@dimen/control_null_h"
|
|
android:layout_centerHorizontal="true"/>
|
|
<TextView
|
|
android:textColor="@color/txt_98A5B6"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/btn_back_margin_top"
|
|
android:text="@string/control_onclick"
|
|
android:layout_below="@+id/im_control_null"
|
|
android:layout_centerHorizontal="true"/>
|
|
</RelativeLayout>
|