Arun Badole
Arun Badole

Reputation: 11097

Not able to import android.widget.NumberPicker in android

Hi I am using Android version 2.3.3 . I want to use NumberPicker view & I can see that in my xml code.But when I try to import NumberPicker in my java class then I didn't find it there.

Please help.

Upvotes: 3

Views: 5842

Answers (1)

iTurki
iTurki

Reputation: 16398

NumberPicker was added in API Level 11. So, you can't import it to your API 10 (Android 2.3.3) project.

Alternatives:

If I were you, I'll go with the first one.

Upvotes: 9

Related Questions