我从代码中替换表行时遇到了一个奇怪的问题。
我的XML代码如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/columnheadings"
android:layout_height="wrap_content"
android:layout_width="fill_parent"/>
<ListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:dividerHeight="2px"
/>
...
</LinearLayout>
创建活动后,我可以成功将TableRow插入TableLayout“columnheadings”:
table = (TableLayout)findViewById(R.id.columnheadings);
table.removeAllViews();
TableRow tr = new TableRow(this);
TextView tv = new TextView(activity);
tv.setText("asdf");
tr.addView(tv);
table.addView(tr);
table.postInvalidate();
表列的内容(和宽度)是动态计算的。
现在我想在ListView的Adapter中有更新时重绘TableLayout。为此,我正在创建一个带有对活动的引用的适配器。
在适配器内我可以成功更改,例如专栏文本。
我尝试做什么(没有成功):
TableLayout tableLayout = (TableLayout)activity.findViewById(android.app.R.id.columnheadings);
tableLayout.removeAllViews();
TableRow row=new TableRow(activity);
TextView tv = new TextView(activity);
tv.setText("test");
row.addView(tv);
tableLayout.addView(row);
tableLayout.postInvalidate();
不幸的是,唯一发生的事情就是删除当前的表行。新行未从适配器添加到tableLayout。
有什么建议吗?
答案 0 :(得分:0)
我不记得原因,但我的代码在所有操作结束时都有row.getParent().requestLayout();
。似乎没有它也不适合我。我在代码中不需要TableLayout
引用这就是我使用row.getParent()
的原因,我认为你可以简单地编写tableLayout.requestLayout();
并且它会有所帮助。