数字选择器,侧面有定义

时间:2018-03-23 06:34:13

标签: android android-dialogfragment android-number-picker

我正在使用数字选择器创建对话框,我该怎么做才能在数字选择器旁边有一个定义?看起来像number picker

这就是我所拥有的(没有小时字)。

这是我的代码:

public void goToSelectDuration(){
    final NumberPicker numberPicker = new NumberPicker(getActivity());
    numberPicker.setMinValue(03);
    numberPicker.setMaxValue(23);

    final AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
    builder.setCancelable(false);
    builder.setNegativeButton(R.string.Cancel, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            dialog.dismiss();
        }
    });
    builder.setPositiveButton(R.string.Ok, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            viewModel.setDisposalDuration(numberPicker.getValue());
            binding.fragmentChartermainDurationtime.setText(Integer.toString(numberPicker.getValue()));
        }
    });

0 个答案:

没有答案