理论推荐链接:http://my.oschina.net/taoyy/blog/53325
例子(XML):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="3dip"
>
<TableLayout
android:id="@+id/table_one"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TableRow
android:layout_width="120px"
android:layout_height="40px"
>
<Button android:text="按钮一"/>
<Button android:text="按钮二"/>
</TableRow>
<TableRow
android:layout_width="120px"
android:layout_height="40px"
>
<Button android:text="二按钮一"/>
<Button android:text="二按钮二"/>
</TableRow>
</TableLayout>
<Button
android:layout_width="120px"
android:layout_height="80px"
android:id="@+id/rebackBtn"
android:text="返回主窗体"/>
</LinearLayout>
分享到:
相关推荐
andorid tablelayout实例 疯狂Android讲义
Android提供了多种布局类型,包括线性布局(LinearLayout)、相对布局(RelativeLayout)、帧布局(FrameLayout)、表格布局(TableLayout)和绝对布局(AbsoluteLayout)。每种布局类型都有其特点和适用场景。 ...
1. **LinearLayout与TableLayout**:在Android中,LinearLayout是最基本的布局之一,它允许你将子视图水平或垂直堆叠。而TableLayout则是更复杂的一种布局,它模仿了HTML中的表格,可以用来组织行和列,适合展示结构...
•Andorid---UI篇---TableLayout(表格布局) • •Android---UI篇---RelativeLayout(相对布局) • •Android---UI篇---GridView(网格布局) • •Android---UI篇---Gallery(画廊视图) • •Android---UI篇---...
除了这些基础布局,Android还提供了一些组合布局,如`TableLayout`(表格布局)、`ScrollView`(滚动视图)和`LinearLayout`的子类如`HorizontalScrollView`。这些布局可以嵌套使用,以实现更复杂的设计。 在实际...
在代码中创建`TableLayout`和`TableRow`,并通过循环生成`ImageButton`按钮。这样可以避免大量重复的XML代码。 2. **按钮的创建与设置**: 使用`ImageButton`作为消消乐的方块,每个按钮通过`setTag()`方法设置...