显示编号选择器值

时间:2017-05-28 11:57:01

标签: android

我一直试图在吐司留言上显示数字选择器的值,但每次运行时,我都会android.widget.NumberPicker{/*some vales in here*/}。如何在号码选择器上获取所选号码以显示在Toast消息中?

public class NewStudy extends AppCompatActivity {

    final NumberPicker mynp = new NumberPicker(this);
    mynp.setMaxValue(24);
    mynp.setMinValue(1);              

    public void onClick(DialogInterface dialogInterface, int i) {
        Toast.makeText(NewStudy.this,"value: " + mynp,Toast.LENGTH_SHORT).show();
    }                                 
} 

1 个答案:

答案 0 :(得分:0)

尝试:

Object2