以前曾经问过,但我找不到对我有用的解决方案:
从代码向表中添加行时,行不会显示在应用程序中。我在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对我来说不起作用,以便检查行是否存在但是不可见。在调试器中,它对我来说很好。
答案 0 :(得分:0)