在NumberPicker中显示某个值

时间:2016-10-27 07:51:44

标签: android dialog numberpicker

用户打开NumberPicker时是否可以显示某些值?例如,我有最小值= 10,最大值= 50;

final NumberPicker picker = new NumberPicker(MonitorActivity.this);
        picker.setMinValue(10);
        picker.setMaxValue(50);

当打开NumberPicker时,我想显示值= 30而不是标准10。 我怎么能这样做?

更新

upTv = (TextView) findViewById(R.id.upper_tv);
 upTv.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                show(180, 200, upTv);

            }
        });
public void show(int int1, int int2, final TextView tv)
    {

        String button1String = "OK";
        String button2String = "cancell";
        ad = new AlertDialog.Builder(MonitorActivity.this);
        ad.setTitle("Title");  



        final NumberPicker picker = new NumberPicker(MonitorActivity.this);
        picker.setMinValue(int1);
        picker.setMaxValue(int2);
        picker.setWrapSelectorWheel(false);
        final FrameLayout parent = new FrameLayout(MonitorActivity.this);
        parent.addView(picker, new FrameLayout.LayoutParams(
                FrameLayout.LayoutParams.WRAP_CONTENT,
                FrameLayout.LayoutParams.WRAP_CONTENT,
                Gravity.CENTER));
        ad.setView(parent);

        ad.setPositiveButton(button1String, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int arg1) {


                int pickedValue = picker.getValue();
                tv.setText(String.valueOf(picker.getValue()));
                picker.setValue(pickedValue);
            }
        });
        ad.setNegativeButton(button2String, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int arg1) {

            }
        });
        ad.setCancelable(true);

        ad.show();
    }

1 个答案:

答案 0 :(得分:2)

NumberPicker picker = new NumberPicker(MonitorActivity.this);
picker.setMinValue(10);
picker.setMaxValue(50);

您只需要执行默认显示30。

picker.setValue(30);