我尝试将按钮动态添加到 TableRow,但遇到了错误。
布局xml
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:id="@+id/layout" >
<TableRow android:id="@+id/jumble">
</TableRow>
</TableLayout>
错误线
TableRow tr = (TableRow) findViewById(R.id.jumble);
得到一个空异常。
甚至有可能做到这一点吗?或者我必须将 TableRow 动态添加到 TableLayout?