我间歇性地收到了InflateException / ClassNotFoundException错误。我之前在SO中看到过类似的错误,但它们是由拼写错误引起的。我正确地拼写了'ImageView',所以我不知道是什么导致错误。
发生错误的代码是:
v = View.inflate(getContext(), R.layout.event_show_row_layout, null);
这是布局xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="10dip"
android:paddingRight="10dip" >
<TextView
android:id="@+id/fromTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
android:textStyle="italic" />
<TextView
android:id="@+id/timeTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:textSize="12sp"
android:textStyle="italic" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/layoutPostImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="4dp" >
<ImageView
android:id="@+id/postImageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_margin="2dp"
android:adjustViewBounds="true"
android:background="@drawable/timeline_image_border"
android:contentDescription="@string/hello"
android:paddingBottom="6dp"
android:scaleType="fitXY"
android:src="@drawable/timeline_image_dummy" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/wordsRelativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/wordsTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:paddingLeft="50dp"
android:paddingRight="50dp"
android:text="@string/hello" />
<ImageView
android:id="@+id/topLeftQuoteImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:adjustViewBounds="true"
android:contentDescription="@string/hello"
android:maxHeight="25dp"
android:maxWidth="25dp"
android:scaleType="fitXY"
android:src="@drawable/po_quotes_mobile1" />
<ImageView
android:id="@+id/bottomRightQuoteImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="12dp"
android:layout_marginRight="12dp"
android:adjustViewBounds="true"
android:contentDescription="@string/hello"
android:maxHeight="25dp"
android:maxWidth="25dp"
android:scaleType="fitXY"
android:src="@drawable/po_quotes_mobile2" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp" >
<Button
android:id="@+id/commentButton"
android:layout_width="84dp"
android:layout_height="24dp"
android:layout_alignParentLeft="true"
android:layout_marginLeft="5dp"
android:background="@drawable/es_comment_btn" />
<Button
android:id="@+id/buttonLike"
android:layout_width="84dp"
android:layout_height="24dp"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@id/commentButton"
android:background="@drawable/es_like_btn" />
<Button
android:id="@+id/buttonNumberLike"
android:layout_width="wrap_content"
android:layout_height="24dp"
android:layout_gravity="center"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@id/buttonLike"
android:background="@drawable/like_counter"
android:textColor="@android:color/white"
android:textSize="12sp" />
<Button
android:id="@+id/buttonDelete"
android:layout_width="38dp"
android:layout_height="24dp"
android:layout_alignParentRight="true"
android:layout_marginRight="5dp"
android:background="@drawable/es_more_btn" />
</RelativeLayout>
<TextView
android:id="@+id/commentsTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:background="#FFF9F8F1"
android:text="@string/hello"
android:textColor="@android:color/black"
android:textSize="12sp" />
<TextView
android:id="@+id/spacerTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp" />
</LinearLayout>
以下是错误日志:
E/AndroidRuntime(15849): FATAL EXCEPTION: main
E/AndroidRuntime(15849): android.view.InflateException: Binary XML file line #36: Error inflating class ImageView
E/AndroidRuntime(15849): at org.holoeverywhere.LayoutInflater.createViewFromTag(LayoutInflater.java:454)
E/AndroidRuntime(15849): at org.holoeverywhere.LayoutInflater.rInflate(LayoutInflater.java:737)
E/AndroidRuntime(15849): at org.holoeverywhere.LayoutInflater.rInflate(LayoutInflater.java:740)
E/AndroidRuntime(15849): at org.holoeverywhere.LayoutInflater.inflate(LayoutInflater.java:542)
E/AndroidRuntime(15849): at org.holoeverywhere.LayoutInflater.inflate(LayoutInflater.java:492)
E/AndroidRuntime(15849): at org.holoeverywhere.LayoutInflater.inflate(LayoutInflater.java:487)
E/AndroidRuntime(15849): at android.view.View.inflate(View.java:8807)
E/AndroidRuntime(15849): at com.mypackage.adapters.PostAdapter.getPostView(PostAdapter.java:283)
E/AndroidRuntime(15849): at com.mypackage.adapters.PostAdapter.getView(PostAdapter.java:268)
E/AndroidRuntime(15849): at android.widget.HeaderViewListAdapter.getView(HeaderViewListAdapter.java:220)
E/AndroidRuntime(15849): at android.widget.AbsListView.obtainView(AbsListView.java:1430)
E/AndroidRuntime(15849): at android.widget.ListView.makeAndAddView(ListView.java:1745)
E/AndroidRuntime(15849): at android.widget.ListView.fillDown(ListView.java:670)
E/AndroidRuntime(15849): at android.widget.ListView.fillFromTop(ListView.java:727)
E/AndroidRuntime(15849): at android.widget.ListView.layoutChildren(ListView.java:1598)
E/AndroidRuntime(15849): at android.widget.AbsListView.onLayout(AbsListView.java:1260)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1254)
E/AndroidRuntime(15849): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1130)
E/AndroidRuntime(15849): at android.widget.LinearLayout.onLayout(LinearLayout.java:1047)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.widget.RelativeLayout.onLayout(RelativeLayout.java:912)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at net.simonvt.menudrawer.LeftDrawer.onLayout(LeftDrawer.java:64)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1254)
E/AndroidRuntime(15849): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1130)
E/AndroidRuntime(15849): at android.widget.LinearLayout.onLayout(LinearLayout.java:1047)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
E/AndroidRuntime(15849): at android.view.View.layout(View.java:7175)
E/AndroidRuntime(15849): at android.view.ViewRoot.performTraversals(ViewRoot.java:1140)
E/AndroidRuntime(15849): at android.view.ViewRoot.handleMessage(ViewRoot.java:1859)
E/AndroidRuntime(15849): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(15849): at android.os.Looper.loop(Looper.java:130)
E/AndroidRuntime(15849): at android.app.ActivityThread.main(ActivityThread.java:3683)
E/AndroidRuntime(15849): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(15849): at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime(15849): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
E/AndroidRuntime(15849): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
E/AndroidRuntime(15849): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(15849): Caused by: java.lang.ClassNotFoundException: Could not find class: ImageView
E/AndroidRuntime(15849): at org.holoeverywhere.LayoutInflater.onCreateView(LayoutInflater.java:607)
E/AndroidRuntime(15849): at org.holoeverywhere.LayoutInflater.createViewFromTag(LayoutInflater.java:448)
E/AndroidRuntime(15849): ... 48 more
答案 0 :(得分:22)
我遇到了同样的问题。 我的问题已经发生了,因为我刚刚在&#34; drawable-v24&#34;中使用过图像(图标)。夹。 我通过将它们复制到&#34; drawable&#34;夹
答案 1 :(得分:7)
我遇到了同样的问题,因为我在Android视图上将png文件复制到了drawable,并且它自动复制到了drawable-v24,但是您需要将文件复制到drawable,可以导航到您的项目,然后重新/ drawables并将其手动粘贴,或更改视图以将过去的视图投影到可绘制文件夹中
答案 2 :(得分:6)
我最近遇到了同样的问题,并且能够使用app:srcCompat="@drawable/ic_black_image_24"
appcompat:srcCompat
的文档声明 -
它将drawable设置为此ImageView的内容。允许在较旧版本的平台上运行时使用矢量drawable。
希望如果有人遇到同样的问题,这会有所帮助。
答案 3 :(得分:5)
尝试改变
v = View.inflate(getContext(), R.layout.event_show_row_layout, null);
到
v = View.inflate(getApplicationContext(), R.layout.event_show_row_layout, null);
答案 4 :(得分:4)
对我来说,在我的一个layout.xml文件中,我有
<ImageView
android:id="@+id/row_1_col_0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@string/default_picture_location">
</ImageView>
在strings.xml中,我有
<string name="default_picture_location">"@mipmap/tile"</string>
因此它在Android Studio中显示:
<ImageView
android:id="@+id/row_1_col_0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/tile">
</ImageView>
我认为一切都会有效,因为没有错误,应用程序已编译并运行。但是,有一个运行时错误表示&#34; android.view.InflateException:二进制XML文件行#7:错误导致类ImageView&#34;。
我改变了android:background来自
android:background="@string/default_picture_location"
到
android:background="@mipmap/tile"
一切顺利。
答案 5 :(得分:4)
这是一个古老的问题,但我遇到了同样的问题。在我的情况下,这是因为android:tint
属性使用的是selector
而不是color
:
<ImageView
...
android:tint="@drawable/some_selector" />
虽然这可以毫无问题地使用SDK 21+但它在旧版本中崩溃了......
切换到AppCompatImageView
和app:tint
解决了问题:
<android.support.v7.widget.AppCompatImageView
...
app:tint="@drawable/some_selector" />
答案 6 :(得分:2)
充气期间的错误可能来自ImageView中使用的drawable,在这种情况下:
android:background="@drawable/timeline_image_border"
android:src="@drawable/timeline_image_dummy"
要摆脱它,请替换尝试不同绘图的所有现有图像。
答案 7 :(得分:2)
我有drawable-zh-xxhdpi
目录文档中的资源,但drawable-xxhdpi
资源目录中没有这个错误的出现。
这应该是:
res
drawable-xxhdpi
aa.png
drawable-zh-xxhdpi
aa.png
答案 8 :(得分:1)
答案 9 :(得分:1)
我自己遇到了这个问题,因为我的映像位于darawable-v24目录中。因此,当我想使用较旧的api时,应用程序崩溃了。所以我建议检查您的资源是否在正确的目录中。
答案 10 :(得分:1)
您尚未关闭LinearLayout标记
请使用以下代码来扩展layout.xml
LayoutInflater inflater = getLayoutInflater();
final View v = inflater.inflate(R.layout.your_layout_id, null);
答案 11 :(得分:1)
在我的情况下,我遇到了同样的错误,但在使用带有API的设备时仅 < 24(仿真器或物理设备)。
这是因为使用&#34; gradient&#34;在我导入的SVG中。
错误没有出现在堆栈跟踪中,但它出现在导入的SVG文件的.xml中:
这会导致应用程序在使用此SVG作为其来源的View进行膨胀时崩溃,而对于API&lt; 24。
如果您只想使用SVG,可以将此资源的使用限制为API&gt; = 24并删除以下API的渐变。
答案 12 :(得分:0)
将图像放入drawable中而不是“ v-24”对我有用,我停止了崩溃。
答案 13 :(得分:0)
对我来说,当我同时在drawable
和drawable-v24
中粘贴图像并且添加了一些代码android:src="@drawable/battman"
答案 14 :(得分:0)
答案 15 :(得分:0)
对我来说,问题在于svg文件很大。
答案 16 :(得分:0)
在我的情况下,svg的字母之间存在间隙,然后导致该错误,我所做的是在illustrator中修改字母以消除间隙,并且有效。
答案 17 :(得分:0)
就我而言,它是带有长路径的 SVG 图像。它显示错误:
<块引用>Caused by: java.lang.IllegalArgumentException: R is not a valid verb。 失败发生在路径的位置 2:STRING_TOO_LARGE
查看 long SVG Asset file error : R is not a valid verb. Failure occurred at position 2 of path: STRING_TOO_LARGE,我将 path
拆分为几个 32Kb 以下的文件。