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

<?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>

猜你喜欢

转载自blog.csdn.net/qq_16519957/article/details/78158922