gpt4 book ai didi

android - 使用 simonvt 数字选择器时出现 ClassCastException

转载 作者:数据小太阳 更新时间:2023-10-29 02:31:13 27 4
gpt4 key购买 nike

我正在尝试使用 simonvt 数字选择器。我已成功将库添加到我的项目中,并且已成功运行带有库的示例项目。但是在我的项目中我得到了这个异常(exception):

12-01 21:39:48.543: E/AndroidRuntime(987): java.lang.RuntimeException: Unable to start >activity 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>

和我的 Activity

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);
}

最佳答案

看来您导入了:

import android.widget.NumberPicker;

但是你想要使用:

import net.simonvt.widget.NumberPicker;

关于android - 使用 simonvt 数字选择器时出现 ClassCastException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13663065/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com