我使用以下布局(缩短):
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" ...>
<TableRow ...>
<TextView
android:id="@+id/sell_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/sell" />
<SeekBar
android:id="@+id/sell"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</TableRow>
</TableLayout>
像这样(也缩短了):
LayoutInflater inflater = parent.getLayoutInflater();
View layout = inflater.inflate(R.layout.merger_sale, null);
AlertDialog.Builder builder = new AlertDialog.Builder(parent);
builder.setTitle(R.string.sell_stock_after_merger)
.setView(layout)
.setPositiveButton(R.string.sell_all, new OnClickListener() {...
.setNeutralButton(R.string.trade_sell, new OnClickListener() {...
.setNegativeButton(R.string.trade_all, new OnClickListener() {...
AlertDialog dialog = builder.create();
dialog.show();
布局没有错误,代码也没有。布局在 Eclipse 的布局编辑器中完全显示。对话框在它应该出现的时候出现,按钮的行为应该是它们应该出现的,除了 texview (@+id/sell_text) [和缩短的 <TableRow>s 中的其他文本视图],它们没有出现。
我在看什么?谢谢!