发布时间:2023-05-07 16:30
<shape xmlns:android=\"http://schemas.android.com/apk/res/android\">
<solid android:color=\"#0a0934\" />
<corners
android:bottomLeftRadius=\"8dp\"
android:bottomRightRadius=\"8dp\"
android:topLeftRadius=\"8dp\"
android:topRightRadius=\"8dp\" />
<stroke
android:width=\"0.5dp\"
android:color=\"#787878\" />
shape>
<resources>
<string name=\"app_name\">用户登录string>
<string name=\"username_hint\">输入用户名string>
<string name=\"password_hint\">输入密码string>
<string name=\"login\">登录string>
<string name=\"cancel\">取消string>
resources>
<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\"
tools:context=\".MainActivity\">
<LinearLayout
android:layout_width=\"match_parent\"
android:layout_height=\"0dp\"
android:gravity=\"center\"
android:layout_weight=\"2\">
<ImageView
android:layout_width=\"300dp\"
android:layout_height=\"300dp\"
android:src=\"@mipmap/users\"/>
LinearLayout>
<LinearLayout
android:layout_width=\"match_parent\"
android:layout_height=\"0dp\"
android:orientation=\"vertical\"
android:layout_weight=\"1\"
android:gravity=\"center\"
android:padding=\"20dp\">
<LinearLayout
android:layout_width=\"match_parent\"
android:layout_height=\"wrap_content\">
<ImageView
android:layout_width=\"50dp\"
android:layout_height=\"50dp\"
android:src=\"@mipmap/user\"/>
<EditText
android:id=\"@+id/edt_username\"
android:layout_width=\"match_parent\"
android:layout_height=\"wrap_content\"
android:hint=\"@string/username_hint\"
android:singleLine=\"true\"/>
LinearLayout>
<LinearLayout
android:layout_width=\"match_parent\"
android:layout_height=\"wrap_content\">
<ImageView
android:layout_width=\"50dp\"
android:layout_height=\"50dp\"
android:src=\"@mipmap/pwd\"/>
<EditText
android:id=\"@+id/edt_password\"
android:layout_width=\"match_parent\"
android:layout_height=\"wrap_content\"
android:hint=\"@string/password_hint\"
android:singleLine=\"true\"
android:inputType=\"textPassword\"/>
LinearLayout>
LinearLayout>
<LinearLayout
android:layout_width=\"match_parent\"
android:layout_height=\"0dp\"
android:gravity=\"center_horizontal\"
android:layout_weight=\"1\">
<Button
android:id=\"@+id/btn_login\"
android:layout_width=\"150dp\"
android:layout_height=\"wrap_content\"
android:text=\"@string/login\"
android:textSize=\"20sp\"
android:background=\"@drawable/button_border\"
android:layout_marginRight=\"10dp\"/>
<Button
android:id=\"@+id/btn_cancel\"
android:layout_width=\"150dp\"
android:layout_height=\"wrap_content\"
android:text=\"@string/cancel\"
android:textSize=\"20sp\"
android:background=\"@drawable/button_border\"/>
LinearLayout>
LinearLayout>