安卓笔记(3)用户名密码输入框

来源:互联网 发布:windows 8 10 whql 编辑:程序博客网 时间:2024/06/06 00:04
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    >      <EditText          android:layout_width="wrap_content"          android:layout_height="wrap_content"          android:hint="请输入用户名:"/>       <EditText           android:layout_width="wrap_content"           android:layout_height="wrap_content"           android:hint="请输入密码:"/></LinearLayout>

阅读全文
0 0