Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Hi i am getting class cast exceptrion in this line

wheel = (WheelView) findViewById(R.id.wheel);  

<LinearLayout 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:layout_centerInParent="true"
    android:layout_margin="10dip"  
    android:background="@drawable/wheel_side_background">

<com.WheelView  
    android:id="@+id/wheel" 
    android:layout_width="fill_parent"
    android:layout_height="150dip"
    android:layout_marginTop="1dip"
    android:layout_marginBottom="1dip">

Exception:10-10 15:20:17.700: ERROR/AndroidRuntime(720): Caused by: java.lang.ClassCastException: com.skynextech.firstdentalcare.WheelView
10-10 15:20:17.700: ERROR/AndroidRuntime(720):     at com.skynextech.firstdentalcare.PatientSetInfo.onCreate(PatientSetInfo.java:81)
10-10 15:20:17.700: ERROR/AndroidRuntime(720):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
10-10 15:20:17.700: ERROR/AndroidRuntime(720):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
194 views
Welcome To Ask or Share your Answers For Others

1 Answer

You have declared a layout object of type com.WheelView. However you are trying to cast it to a different class, com.skynextech.firstdentalcare.WheelView. That's the problem. I assume that com.WheelView is a typo, and the mistake.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...