我正在尝试在执行期间向空表添加一堆行。我尝试过使用一些测试代码但由于某种原因屏幕保持空白。如果我在.XML中有元素它们会显示,但不会显示表本身,除非我在.XML文件中添加一些行/元素。
我真的很感激一些帮助。
我的课程扩展了活动。
以下是更新表格的代码:
public Runnable UpdateUserList = new Runnable() {
public void run() {
TableLayout userTable = (TableLayout) findViewById(R.id.listOfUsers);
for (String user : userNames) {
TableRow row = new TableRow(getBaseContext());
row.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
TextView field = new TextView(getBaseContext());
field.setText(user);
field.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
row.addView(field);
userTable.addView(row, new TableLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
}
}
};
我使用Handler以线程方式调用代码:
mHandler.post(UpdateUserList);
代码确实运行,不会输出任何错误。
这是XML文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:background="@drawable/main_bg"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical"
android:layout_marginTop="10px" android:gravity="center_horizontal"
android:layout_weight="1" android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:text="@string/userList"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:textSize="25px" />
</LinearLayout>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:id="@+id/listOfUsers">
</TableLayout>
</LinearLayout>
任何帮助都非常有用。我现在非常困难。
编辑:使用ListView
private Runnable UpdateUserList = new Runnable() {
public void run() {
ListView userTable = (ListView) findViewById(R.id.listOfUsers);
userTable.setAdapter(new ArrayAdapter<String>(getBaseContext(),
R.layout.connectserver, userNames));
}
};
和XML:
<ListView android:layout_width="fill_parent"
android:layout_height="fill_parent" android:id="@+id/listOfUsers" />
而不是TableLayout。
答案 0 :(得分:2)
我认为你会发现使用List而不是TableLayout更容易。它是为了容纳多个项而构建的,可以很容易地与java.util.List或Array集成。其次,更重要的是,如果您拥有的项目多于可见项目,则内存效率会更高。
使用List它只实例化可见行的视图+ 1的N列表。如果使用TableLayout显示相同的列表,它会立即显示N个视图。因此,随着列表的增长,使用TableLayout的内存使用量也会增加。列表不是这样。无论你在该列表中有多少项目,它都是一样的。
此外,它提供了更好的方法来跟踪用户点击项目时选择的项目。 TableLayout没有提供任何帮助,因此您必须使用自己的机制进行选择。