The Import Com.android.datetimepicker Cannot Be Resolved
I've imported an existing Android project to Eclipse, but I'm getting errors on the following imports: import com.android.datetimepicker.time.RadialPickerLayout; import com.android
Solution 1:
Neither of those classes exist in the Android SDK. There is a TimePickerDialog
, as others have noted, in a different package. There is a RadialPickerLayout
in the Android source code, and you are welcome to try to use it.
Really, you should be talking to whoever wrote this Android project and asking them where they were planning on getting those classes from.
Post a Comment for "The Import Com.android.datetimepicker Cannot Be Resolved"