You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:padding="10dp">
|
|
|
|
<TextView
|
|
android:layout_marginLeft="5dp"
|
|
android:padding="5dp"
|
|
android:text="请输入图形校验码(点击图片刷新):"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:padding="5dp">
|
|
|
|
<EditText
|
|
android:id="@+id/et_graphCode"
|
|
android:layout_width="1dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/edit_bg"
|
|
android:hint="验证码"
|
|
android:singleLine="true" />
|
|
|
|
<ImageView
|
|
android:id="@+id/randcode_imgError"
|
|
android:layout_marginLeft="6dp"
|
|
android:layout_width="1dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:layout_height="40dp"
|
|
android:src="@android:drawable/ic_delete"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_graphCode"
|
|
android:layout_marginLeft="6dp"
|
|
android:layout_width="1dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:layout_height="40dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|