Android表创建

时间:2015-07-06 13:57:46

标签: android android-tablelayout

如何在android中创建一个如下所示的表:

-------------------------------
|             |       Text    |
|   picture   |----------------
|             |       Text    |
-------------------------------

2 个答案:

答案 0 :(得分:1)

使用TableLayout,它就是为此而设计的。

阅读this教程,它详细描述了如何。

简而言之,TableLayout允许使用类似布局的表格,这正是您所描述的内容。

表格中的每个元素本身都是一个视图,因此您可以获得最大的灵活性。

答案 1 :(得分:1)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:src="@drawable/ic_launcher" />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_weight="1.00"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Medium Text"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Medium Text"
        android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>

请根据需要设定重量