android studio 介面佈局之表格佈局
阿新 • • 發佈:2019-01-23
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"android:background="@drawable/p1" tools:context="com.example.administrator.tablelineout.MainActivity"> <TableRow android:gravity="center"> <Button android:id="@+id/b1" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="第一個" android:layout_marginRight="10dp"/> <Button android:id="@+id/b2" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="第二個" android:layout_marginRight="10dp"/> <Button android:id="@+id/b3" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="第三個" android:layout_marginRight="10dp"/> </TableRow> <TextView android:id="@+id/t1" android:layout_height="match_parent" android:layout_width="match_parent" android:textSize="20dp" android:gravity="bottom" android:textColor="@color/colorAccent" android:text="context:" android:layout_marginLeft="20dp"/> </TableLayout>