gpt4 book ai didi

android - NumberPicker 未显示在 AlertDialog 中

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:48:01 26 4
gpt4 key购买 nike

我正在尝试将 NumberPicker 添加到 AlertDialog,但它并不适用,即使似乎没有错误。我是 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();

最佳答案

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

关于android - NumberPicker 未显示在 AlertDialog 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14091994/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com