4

我正在尝试将单选按钮动态添加到自定义对话框,但无法将其添加到我的自定义对话框中

 final RadioButton[] rb = new RadioButton[5];
 RadioGroup rg = new RadioGroup(this); 
 rg.setOrientation(RadioGroup.VERTICAL);

        // layout params to use when adding each radio button
 LinearLayout.LayoutParams layoutParams = new RadioGroup.LayoutParams(
                RadioGroup.LayoutParams.WRAP_CONTENT,
                RadioGroup.LayoutParams.WRAP_CONTENT);

 LinearLayout ll2 = (LinearLayout) findViewById(R.id.linearMain);

 // add 5 radio buttons to the group

 for (int i = 0; i < 5; i++){
      rb[i] = new RadioButton(this);
      String label = "item set" + i;
      rb[i].setText(label);
      rb[i].setId(i);
      rg.addView(rb[i],layoutParams);

      }
 ll2.addView(rg);

--------------------------------------------------------------------

 Context context=LocationActivity.this;
 dialog=new Dialog(context);
 dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

 dialog.setContentView(R.layout.custom_dialog);
     ----------------------------------------------------------------------

 Linearlayout2 is defined in custom_dialog.xml file. I must be doing something wrong but not able to figure it out. Other widgets are getting displayed except radiogroup buttons.

任何指向此问题的指针都值得赞赏。

谢谢!瑞士

custom_dialog 文件如下:

它有 2 个 textview 小部件和一个声明的 radiogroup。我能够成功地将相同的布局添加到活动屏幕,但不能添加到自定义对话框。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/linlayoutBase"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
>

    <LinearLayout
        android:id="@+id/linearLayout3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/TextView03"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dip"
            android:layout_marginRight="5dip"
            android:text="Longitute: "
            android:textSize="20dip" >
        </TextView>

        <TextView
            android:id="@+id/TextView04"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="unknown"
            android:textSize="20dip" >
        </TextView>
    </LinearLayout>

    <LinearLayout
          android:id="@+id/linearMain"
          android:layout_width="match_parent"
          android:layout_height="wrap_content">

    <RadioGroup
          android:id="@+id/radiogroup"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
    >
    </RadioGroup>

    </LinearLayout>
</LinearLayout>
4

1 回答 1

6

查看您发布的 XML,试试这个:

Context context=LocationActivity.this;
dialog=new Dialog(context);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

View view = LayoutInflater.fromContext(context).inflate(R.layout.custom_dialog, null, false);
RadioGroup rg = (RadioGroup) view.findViewById(R.id.radiogroup);
RadioGroup.LayoutParams layoutParams = new RadioGroup.LayoutParams(
                RadioGroup.LayoutParams.WRAP_CONTENT,
                RadioGroup.LayoutParams.WRAP_CONTENT);

 // add 5 radio buttons to the group
RadioButton rb;
for (int i = 0; i < 5; i++){
    rb = new RadioButton(context);
    rb.setText("item set" + i);
    rb.setId(i);
    rg.addView(rb, layoutParams);
}

dialog.setContentView(view);

我没有看到您如何更改对话框布局。所以我膨胀了布局,添加了 RadioButtons,然后将完成的布局传递给dialog.

此外,因为linearMain只有一个孩子,您可以删除此 LinearLayout 并简单地使用radioGroup.

于 2012-11-20T19:58:37.097 回答