使用TabLayout实现简单登录布局的实现

来源:互联网 发布:centos 阿里云 yum源 编辑:程序博客网 时间:2024/06/06 18:01

这仅仅是一个用TabLayout实现简单登录布局,有什么优化的地方请大家多多指教


<?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"    xmlns:tools="http://schemas.android.com/tools"    android:id="@+id/TableLayout1"    tools:context=".MainActivity"    android:stretchColumns="0,3"    android:gravity="center_vertical"    android:background="#66FF66">    <TableRow>        <TextView />        <TextView            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="用户名:" />        <EditText            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:minWidth="150dp"/>        <TextView />     </TableRow>    <TableRow>        <TextView />        <TextView            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="密 码:"/>        <EditText            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:minWidth="150dp"/>        <TextView />    </TableRow>    <TableRow>        <TextView />        <Button            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="登录"/>        <Button            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="退出"/>        <TextView />    </TableRow></TableLayout>