NumberPicker未在AlertDialog中显示

时间:2012-12-30 15:36:43

标签: android user-interface components alertdialog numberpicker

我正在尝试将一个NumberPicker添加到AlertDialog中,但即使似乎没有错误也没有apper。我是Android编码的新手,所以我认为这是一个非常愚蠢的东西,在那里缺失。

        AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);

        alert.setTitle("Select the value: ");

        NumberPicker np = new NumberPicker(MainActivity.this);
        String[] nums = new String[100];
        for(int i=0; i<nums.length; i++)
               nums[i] = Integer.toString(i);

        np.setMinValue(1);
        np.setMaxValue(nums.length-1);
        np.setWrapSelectorWheel(false);
        np.setDisplayedValues(nums);
        np.setValue(50);

        alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int whichButton) {
          // Do something with value!
          }
        });

        alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
          public void onClick(DialogInterface dialog, int whichButton) {
            // Cancel.
          }
        });

        alert.show();

1 个答案:

答案 0 :(得分:4)

添加alert.setView(np);  您必须告诉警告对话框以设置新视图。