2017-04-19 40 views
-8

添加以下相对布局和嵌套元素(ImageView的,TextView的),以主要布局后,我的应用程序强制关闭时开放,与错误java.lang.ClassCastException: android.widget.ImageView cannot be cast to android.widget.TextViewImageView的不能转换为android.widget.TextView

这里的堆栈跟踪:

E/AndroidRuntime: FATAL EXCEPTION: main 
    Process: com.fogtechnologies.expotec.urban, PID: 2898 
    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.fogtechnologies.expotec.urban/com.fogtechnologies.expotecshell.urban.activities.ActivityExpotecMainView}: java.lang.ClassCastException: android.widget.ImageView cannot be cast to android.widget.TextView 
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2195) 
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245) 
    at android.app.ActivityThread.access$800(ActivityThread.java:135) 
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196) 
    at android.os.Handler.dispatchMessage(Handler.java:102) 
    at android.os.Looper.loop(Looper.java:136) 
    at android.app.ActivityThread.main(ActivityThread.java:5017) 
    at java.lang.reflect.Method.invokeNative(Native Method) 
    at java.lang.reflect.Method.invoke(Method.java:515) 
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779) 
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595) 
    at dalvik.system.NativeStart.mai(Native Method) 
Caused by: java.lang.ClassCastException: android.widget.ImageView cannot be cast to android.widget.TextView 
    at com.fogtechnologies.expotecshell.urban.activities.ActivityExpotecMainView.findViews(ActivityExpotecMainView.java:163) 
    at com.fogtechnologies.expotecshell.urban.activities.ActivityExpotecMainView.onCreate(ActivityExpotecMainView.java:77) 
    at android.app.Activity.performCreate(Activity.java:5231) 
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087) 
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2159) 
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)  
    at android.app.ActivityThread.access$800(ActivityThread.java:135)  
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)  
    at android.os.Handler.dispatchMessage(Handler.java:102)  
    at android.os.Looper.loop(Looper.java:136)  
    at android.app.ActivityThread.main(ActivityThread.java:5017)  
    at java.lang.reflect.Method.invokeNative(Native Method)  
    at java.lang.reflect.Method.invoke(Method.java:515)  
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)  
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)  
    at dalvik.system.NativeStart.main(Native Method)  

这里是我的布局文件中的片段:

<RelativeLayout 
    android:id="@+id/RelativeLayout2" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" > 

    <ImageView 
     android:id="@+id/tvMainDownloadEvent" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="80dp" 
     android:layout_marginRight="80dp" 
     android:textColor="@color/white" 
     android:onClick="downloadEventButtonAction" 
     android:src="@drawable/now_performing_shape" 
     android:scaleX="0.8" 
     android:scaleY="0.8" /> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@id/tvMainDownloadEvent" 
     android:layout_alignTop="@id/tvMainDownloadEvent" 
     android:layout_alignRight="@id/tvMainDownloadEvent" 
     android:layout_alignBottom="@id/tvMainDownloadEvent" 
     android:layout_margin="1dp" 
     android:gravity="center" 
     android:textColor="@color/white" 
     android:textSize="16sp" 
     android:scaleX="0.9" 
     android:scaleY="0.9" 
     android:text="Download Event" /> 

</RelativeLayout> 

```

下面是这个问题的代码行:

tvMainDownloadEvent = (TextView) findViewById(R.id.tvMainDownloadEvent);

改变(TextView)(ImageView)不解决这个问题。

如何将ID的类型更改为ImageView?

+2

显示您的代码,请 –

+3

很明显的例外,你想在行163类ActivityExpotecMainView.java投一个的ImageView到一个TextView。 – Denny

+0

显示您的Java代码 – vishnumm93

回答

1

对textview使用tvMainDownloadEvent,对imageview使用ivMainDownloadEvent

更改布局

<RelativeLayout 
    android:id="@+id/RelativeLayout2" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" > 

    <ImageView 
     android:id="@+id/ivMainDownloadEvent" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="80dp" 
     android:layout_marginRight="80dp" 
     android:textColor="@color/white" 
     android:onClick="downloadEventButtonAction" 
     android:src="@drawable/now_performing_shape" 
     android:scaleX="0.8" 
     android:scaleY="0.8" /> 

    <TextView 
     android:id="@+id/tvMainDownloadEvent" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@id/ivMainDownloadEvent" 
     android:layout_alignTop="@id/ivMainDownloadEvent" 
     android:layout_alignRight="@id/ivMainDownloadEvent" 
     android:layout_alignBottom="@id/ivMainDownloadEvent" 
     android:layout_margin="1dp" 
     android:gravity="center" 
     android:textColor="@color/white" 
     android:textSize="16sp" 
     android:scaleX="0.9" 
     android:scaleY="0.9" 
     android:text="Download Event" /> 

</RelativeLayout> 
+0

谢谢,也谢谢你,如果你没有downvote我的问题。 – cdabel

+1

我没有downvote。 – Pehlaj

2

问题出在你的java代码中,而不是xml中。最有可能的是你在findViewById()方法中混淆了TextViewImageView的id。

4

你的logcat抛出ClassCastException

抛出,表明代码试图将对象强制转换为 子类,它是不是一个实例。

问题开始从

android:id="@+id/tvMainDownloadEvent" 

是你的TextView编号。不设置这个在的ImageView节。

你应该改变你的Java类。

相关问题