<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="用户名:" android:textColor="@color/black" android:textSize="25dp"/> <EditText android:id="@+id/edt_name" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@color/black"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="密码:" android:textColor="@color/black" android:textSize="25dp"/> <EditText android:id="@+id/edt_pwd" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@color/black" android:inputType="textPassword"/>
时间: 2023-06-26 13:06:52 浏览: 165
Android Studio 创建自定义控件的方法
这是一个简单的 Android 布局代码,包含了两个 TextView 和两个 EditText,用于实现一个登录表单。第一个 EditText 用于输入用户名,第二个 EditText 用于输入密码,它的 inputType 属性设置为 textPassword,以显示密码输入时的遮挡效果。其中,android:layout_width 属性设置为 match_parent,表示该控件的宽度将填满父容器;android:layout_height 属性设置为 wrap_content,表示该控件的高度将根据其内容自适应。另外,还设置了一些样式属性,如字体大小和颜色等。
阅读全文