GooglePlayにアプリケーションがあります。BugSenseを統合しました。すべてが突然正常に機能していました。xmlの下の最初のコントロールの最初の行で3つのエラーが発生しました。なぜこれが起こっているのかわかりませんが、他のAndroidデバイスでは正常に動作しています。何か案は?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/black_text"
>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/black_text"
android:layout_above="@+id/relativeView_fav_shows"
>
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerVertical="true"
android:scaleType="centerCrop"
android:src="@drawable/background_channel"
/>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview_channelView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:numColumns="2"
android:verticalSpacing="5dp"
android:horizontalSpacing="5dp"
android:stretchMode="columnWidth"
android:listSelector="@null"
android:layout_marginTop="6dp"
android:gravity="center"
>
</GridView>
</RelativeLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/black_text"
android:layout_below="@+id/gridview_channelView"
android:layout_alignParentBottom="true"
android:id="@+id/relativeView_fav_shows"
>
<ImageView
android:id="@+id/imageView_favShows"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/fav_shows_normal"
/>
</RelativeLayout>
</RelativeLayout>
Logcat出力。
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.microeyes.hindiserials/com.microeyes.hindiserials.ChannelMainActivity}: android.view.InflateException: Binary XML file line #14: Error inflating class
1 at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1659)
2 at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1675)
3 at android.app.ActivityThread.access$1500(ActivityThread.java:121)
4 at android.app.ActivityThread$H.handleMessage(ActivityThread.java:943)
5 at android.os.Handler.dispatchMessage(Handler.java:99)
ありがとう