2017-04-19 6 views
-8

にキャストすることはできません、私のアプリの力がエラーjava.lang.ClassCastException: android.widget.ImageView cannot be cast to android.widget.TextViewで、開いたときに閉じ:ImageViewのメインレイアウトに次の相対的なレイアウトとネストされた要素(ImageViewの、のTextView)を加えた後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)  

ここでは私のレイアウトファイルからの抜粋です0

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

(ImageView)(TextView)を変更すると、この問題を解決しません。

IDのタイプをImageViewに変更するにはどうすればよいですか?

+2

に変更したレイアウトは、あなたのコードください –

+3

かなり明確な例外を示し、あなたのクラスActivityExpotecMainView.javaにライン163でのTextViewにImageViewのをキャストしようとしています。 – Denny

+0

Javaコードを表示 – vishnumm93

答えて

関連する問題