0

我正在编写一个 Android 应用程序,我正在尝试显示一个表格。我的问题是,这些列没有填满屏幕,它们都粘在左边。

我已经尝试过使用填充,但首先我不认为它与所有显示分辨率兼容,其次当它们具有不同的内容时,列的对齐方式不同。

然后我读到了重量,这正是我想要的,给每一列屏幕宽度的特定百分比。但重量确实导致细胞再次粘在左边。他们确实对我设置的权重没有任何反应。

我在 xml 模板中对视图进行编程,并使用 LayoutInflater 以编程方式对它们进行膨胀。然后我将它们添加到相应的 TableRow 中。所有这一切都很好,但他们只是对重量没有反应。

我将衷心感谢您的帮助。

编辑:模板指的是一种风格,看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/scheduleClass" />

样式如下所示:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="scheduleItem" parent="@android:style/TextAppearance.Medium">
        <item name="android:layout_width">0dp</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:paddingRight">0dp</item>
        <item name="android:paddingBottom">10dp</item>
    </style>
    <style name="scheduleClass" parent="scheduleItem">
        <item name="android:layout_weight">0.2</item>
    </style>
</resources>

还有其他一些列,但它们只有另一个名称和另一个权重。

这就是我将视图添加到表中的方式:

public void updateList(ArrayList<Lesson> lessons) {
    setContentView(R.layout.schedule);
    TableLayout table = (TableLayout) findViewById(R.id.table);

    for(Lesson cancel : lessons) {
        TableRow row = new TableRow(this);

        TextView date = (TextView) this.getLayoutInflater().inflate(R.layout.scheduledatetemplate, null);
        date.setText(cancel.date);

        TextView classname = (TextView) this.getLayoutInflater().inflate(R.layout.scheduleclasstemplate, null);
        classname.setText(cancel.classname);

        TextView lesson = (TextView) this.getLayoutInflater().inflate(R.layout.schedulelessontemplate, null);
        lesson.setText(cancel.lesson);

        Button details = (Button) this.getLayoutInflater().inflate(R.layout.detailsbuttontemplate, null);
        details.setText(R.string.details);
        details.setOnClickListener(this);

        row.addView(date);
        row.addView(classname);
        row.addView(lesson);
        row.addView(details);

        table.addView(row);
    }
}

这是 TableLayout xml:

<?xml version="1.0" encoding="utf-8"?>

<ScrollView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:scrollbars="vertical"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">

    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/table"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollbars="vertical">

    </TableLayout>
</ScrollView>
4

1 回答 1

0

您需要为您的 s声明android:layout_columnandroid:layout_span属性TableRow

请参阅http://developer.android.com/reference/android/widget/TableRow.LayoutParams.html

在此处查看示例: http ://www.mkyong.com/android/android-tablelayout-example/

更新:好的,你需要在你创建的每一行中设置 layout_span 和 layout_column,使用这个 addView 方法:http: //developer.android.com/reference/android/widget/TableLayout.html#addView (android.view.View,int,android.view.ViewGroup.LayoutParams)

为布局参数提供适当的列和跨度,使您的行跨越整个表格,并让行重力=中心使其内容位于中心。

此外,表属性strechColumns http://developer.android.com/reference/android/widget/TableLayout.html#attr_android:stretchColumns 可能会帮助你,如:

android:strechColumns="*"

或类似的东西。

于 2012-08-19T21:04:08.757 回答