Android:如何使用 NumberPickerDialog

发布于 2024-11-25 12:42:57 字数 594 浏览 0 评论 0原文

有人可以给我一个如何在 Activity.onCreateDialog 中实例化 NumberPickerDialog 的示例吗?(https://github.com/novak/numberpicker/blob/master/lib/src/com/michaelnovakjr/numberpicker/NumberPickerDialog.java)?

名为 numberpicker-demo 的存储库中有使用该小部件的示例,但没有用于实际对话框的示例。

在我尝试过的其他方法中,尝试过类似的方法:

return new NumberPickerDialog.Builder(this)
    .setTitle("Choose Number")
    .etc..

但这仅显示一个标准的 AlertDialog,没有 NumberPicker。

谢谢!

Could someone give me an example of how to instantiate a NumberPickerDialog within Activity.onCreateDialog ?(https://github.com/novak/numberpicker/blob/master/lib/src/com/michaelnovakjr/numberpicker/NumberPickerDialog.java) ?

There are examples in a repo called numberpicker-demo for using the widget, but none for the actual dialog.

Amongst other approaches I've tried tried something like:

return new NumberPickerDialog.Builder(this)
    .setTitle("Choose Number")
    .etc..

But this just shows a standard AlertDialog, without the NumberPicker.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

青柠芒果 2024-12-02 12:42:57

最终让它发挥作用。 com.quietlycoding.android.picker.Picker 中有一个示例,但我发现该对话框没有正确设置调光,在视图中时将背景中的整个 Activity 涂黑。

我通过简单地以通常的方式创建一个 AlertDialog,然后将 NumberPicker 小部件粘贴到 setView() 中来解决这个问题:

LayoutInflater inflater = (LayoutInflater)
    getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View npView = inflater.inflate(R.layout.number_picker_pref, null);
    return new AlertDialog.Builder(this)
        .setTitle("Text Size:")
        .setView(npView)
        .setPositiveButton(R.string.dialog_ok,
            new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int whichButton) {

                }
            })
            .setNegativeButton(R.string.dialog_cancel,
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int whichButton) {
                    }
                })
            .create();

确保将 number_picker_pref.xml 从 numberpicker 项目复制到您自己项目中的 res/layout 中。

Got it working eventually. There's an example in com.quietlycoding.android.picker.Picker, but I've found that the dialog doesn't set the dimming properly, blacking out the whole Activity in the background while it's in view.

I worked around this by simply creating an AlertDialog in the usual way, and then just sticking a NumberPicker widget into setView():

LayoutInflater inflater = (LayoutInflater)
    getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View npView = inflater.inflate(R.layout.number_picker_pref, null);
    return new AlertDialog.Builder(this)
        .setTitle("Text Size:")
        .setView(npView)
        .setPositiveButton(R.string.dialog_ok,
            new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int whichButton) {

                }
            })
            .setNegativeButton(R.string.dialog_cancel,
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int whichButton) {
                    }
                })
            .create();

Make sure to copy number_picker_pref.xml from the numberpicker project to res/layout in your own project.

倒数 2024-12-02 12:42:57

看看这个(以及
可选这个:
创建对话框)。

Look at this (and
optionaly this:
Creating dialogs).

日记撕了你也走了 2024-12-02 12:42:57

如果您这样做,那就会简单得多:

  1. 将 NumberPicker 添加到您的布局
  2. 将此代码添加到您的 Activity

     //NumberPicker 充电器
        npicker = (NumberPicker) findViewById(R.id.picker);
        // 设置间隔
        npicker.setRange(1,pages.size());
        // 设置实际值
        npicker.setCurrent(1);
    
        npicker.setOnChangeListener(new OnChangedListener() {               
            @覆盖
            公共无效onChanged(NumberPicker选择器,int oldVal,int newVal){
                // TODO 自动生成的方法存根
                Log.e("记录变更事件","oldVal: "+oldVal+"//newVal: "+newVal);
            }
        });
    

That should be much simpler if only you do this:

  1. Add NumberPicker to you layout
  2. Add this code on your Activity

        //charger le NumberPicker
        npicker = (NumberPicker) findViewById(R.id.picker);
        // Set intervalle
        npicker.setRange(1, pages.size());
        // Set la valeur actuelle
        npicker.setCurrent(1);
    
        npicker.setOnChangeListener(new OnChangedListener() {               
            @Override
            public void onChanged(NumberPicker picker, int oldVal, int newVal) {
                // TODO Auto-generated method stub
                Log.e("Log Change event","oldVal: "+oldVal+"//newVal: "+newVal);
            }
        });
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文