本文主要是介绍xml文件(activity_account),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:stretchColumns="1"> <TableRow> <TextView android:layout_height="wrap_content" android:text="用户名 " android:textSize="24sp" /> <EditText android:id="@+id/accountName" android:layout_height="wrap_content" android:hint="请输入用户名" /> </TableRow> <TableRow> <TextView android:layout_height="wrap_content" android:text="密码" android:textSize="24sp" /> <EditText android:id="@+id/password" android:layout_height="wrap_content" android:hint="请输入密码" /> </TableRow> <Button android:id="@+id/register" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="注册" android:textSize="24sp" /> <Button android:id="@+id/login" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="登录" android:textSize="24sp" /> </TableLayout>
这篇关于xml文件(activity_account)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!