3

我正在尝试使用 simonvt 号码选择器。我已成功将库添加到我的项目中,并且已成功运行带有库的示例项目。但在我的项目中,我得到了这个例外:

12-01 21:39:48.543: E/AndroidRuntime(987): java.lang.RuntimeException: 无法启动 >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>

和我的活动

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

1 回答 1

4

看来您已导入:

import android.widget.NumberPicker;

但是你想使用:

import net.simonvt.widget.NumberPicker;
于 2012-12-01T19:52:25.003 回答