我正在编写一个 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>