`
沈青青
  • 浏览: 1175 次
  • 性别: Icon_minigender_2
最近访客 更多访客>>
社区版块
存档分类
最新评论

andorid_tablelayout

阅读更多
理论推荐链接: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实例

    andorid tablelayout实例 疯狂Android讲义

    2.1 Andorid布局.pdf

    Android提供了多种布局类型,包括线性布局(LinearLayout)、相对布局(RelativeLayout)、帧布局(FrameLayout)、表格布局(TableLayout)和绝对布局(AbsoluteLayout)。每种布局类型都有其特点和适用场景。 ...

    android动态添加表格行_动态布局.zip

    1. **LinearLayout与TableLayout**:在Android中,LinearLayout是最基本的布局之一,它允许你将子视图水平或垂直堆叠。而TableLayout则是更复杂的一种布局,它模仿了HTML中的表格,可以用来组织行和列,适合展示结构...

    Android---UI篇

    •Andorid---UI篇---TableLayout(表格布局) • •Android---UI篇---RelativeLayout(相对布局) • •Android---UI篇---GridView(网格布局) • •Android---UI篇---Gallery(画廊视图) • •Android---UI篇---...

    Android代码(布局控件入门).zip

    除了这些基础布局,Android还提供了一些组合布局,如`TableLayout`(表格布局)、`ScrollView`(滚动视图)和`LinearLayout`的子类如`HorizontalScrollView`。这些布局可以嵌套使用,以实现更复杂的设计。 在实际...

    Android开心消消乐代码实例详解

    在代码中创建`TableLayout`和`TableRow`,并通过循环生成`ImageButton`按钮。这样可以避免大量重复的XML代码。 2. **按钮的创建与设置**: 使用`ImageButton`作为消消乐的方块,每个按钮通过`setTag()`方法设置...

Global site tag (gtag.js) - Google Analytics