gpt4 book ai didi

android - 添加到表中的行未显示

转载 作者:太空狗 更新时间:2023-10-29 15:23:32 32 4
gpt4 key购买 nike

之前有人问过这个问题,但我还没有找到适合我的解决方案:

通过代码向表中添加行时,这些行未显示在应用程序中。我在 XML 中指定了一行,显示了这一行,但下面没有任何内容。

这是代码,我也添加了类的构造函数:

private LayoutInflater theInflater;
private LinkedList<View> rows;
private Context thisContext;

public DistanceTableView(LayoutInflater vi, Context context)
{
theInflater = vi;
rows = new LinkedList<View>();
thisContext = context;
}

public void addRow(LocationMessage locationMsg){
View messageView = theInflater.inflate(R.layout.homepage, null);
TableLayout table = (TableLayout)messageView.findViewById(R.id.distanceTable);

TextView senderNameTextView = new TextView(thisContext);
senderNameTextView.setText(locationMsg.getSenderName());

TableRow tr = new TableRow(thisContext);
tr.addView(distanceTextView);
table.addView(tr);
rows.addFirst(messageView);
}

homepage.xml 包含这个,我删除了一些元素和参数:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout>
<TabHost>
<TabWidget />
<FrameLayout>
[..]
<LinearLayout>
[..]
<TableLayout
android:id="@+id/distanceTable"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:background="#DDDDDD"
android:stretchColumns="1" >
<TableRow>
<TextView
android:textColor="#000000"
android:text="@string/label_device"
android:layout_gravity="center"
android:padding="3dip"
android:textSize="18sp" />
<TextView
android:textColor="#000000"
android:text="@string/label_distance"
android:layout_gravity="center"
android:padding="3dip"
android:textSize="18sp" />
<TextView
android:textColor="#000000"
android:text="@string/label_time"
android:layout_gravity="center"
android:padding="3dip"
android:textSize="18sp" />
</TableRow>
</TableLayout>
</LinearLayout>
</FrameLayout>
</TabHost>
</LinearLayout>

不幸的是,hierarchyviewer.bat 对我不起作用,无法检查行是否存在但只是不可见。在调试器中它对我来说看起来很好。

最佳答案

我认为您应该在添加新行后调用 TableLayout.requestLayout()。

来自docs :

Call this when something has changed which has invalidated the layout of this view. This will schedule a layout pass of the view tree.

关于android - 添加到表中的行未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4852598/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com