我正在尝试使用simonvt号码选择器。我已成功将库添加到我的项目中,并且已成功运行带库的示例项目。 但在我的项目中,我得到了这个例外:
12-01 21:39:48.543:E / AndroidRuntime(987):java.lang.RuntimeException:无法启动>活动ComponentInfo {com.tekna.digiguide / com.tekna.digiguide.KayitHourPickerActivity}:> java.lang.ClassCastException:net.simonvt.widget.NumberPicker
有人可以帮忙吗?
我的xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >
<net.simonvt.widget.NumberPicker
android:id="@+id/numberPicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/buttonPickerEkle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
和我的行为
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.pickerlayout);
final NumberPicker np = (NumberPicker) findViewById(R.id.numberPicker);
np.setMaxValue(24);
np.setMinValue(1);
np.setFocusable(true);
np.setFocusableInTouchMode(true);
}
答案 0 :(得分:3)
您似乎已导入:
import android.widget.NumberPicker;
但你想要使用:
import net.simonvt.widget.NumberPicker;