0

我使用以下布局(缩短):

<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 中的其他文本视图],它们没有出现。

我在看什么?谢谢!

4

2 回答 2

0

我认为如果您更改宽度和高度以包装内容而不是 match_parent,它会起作用。

match_parent 表示它可能会填充整个布局。

或者尝试为每个项目赋予权重,例如 layout_weight ,值为 0 。这可能会起作用

于 2012-12-01T15:41:06.767 回答
0

试试看:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

  <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>
于 2012-12-01T15:52:34.937 回答