InflateException:Bin file line #19:Error inflating class MyTextView

InflateException:Bin file line #19:Error inflating class MyTextView

一、错误简介

为了实现TextView的跑马灯效果,我自己写了一个MyTextView的类继承TextView,结果在layout的XML页面调用的时候出现错误。

类结构图如下:

错误提示如下:

错误区域代码如下:

/textViewDemo1/res/layout/activity04.xml

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical" >
 6     <TextView
 7         android:id="@+id/tv_runHorseLamp"
 8         android:layout_width="match_parent"
 9         android:layout_height="wrap_content"
10         android:singleLine="true"
11         android:ellipsize="marquee"
12         android:focusable="true"
13         android:focusableInTouchMode="true"
14         android:text="这是一段很长的威武霸气的滚动的实现跑马灯效果的一段逼格很高的很有含义和涵养的文字"
15         />
16     <!--ellipsize是小数点的意思  marquee  这句话是添加滚动效果-->
17     <!-- 获取焦点之后才能滚动 -->
18
19     <MyTextView
20         android:id="@+id/tv_runHorseLamp1"
21         android:layout_width="match_parent"
22         android:layout_height="wrap_content"
23         android:ellipsize="marquee"
24         android:singleLine="true"
25         android:text="这是一段很长的威武霸气的滚动的实现跑马灯效果的一段逼格很高的很有含义和涵养的文字"
26         />
27
28
29     <EditText
30         android:id="@+id/et_1"
31         android:layout_width="match_parent"
32         android:layout_height="wrap_content"
33         >
34     </EditText>
35
36 </LinearLayout>
1     <MyTextView
2         android:id="@+id/tv_runHorseLamp1"
3         android:layout_width="match_parent"
4         android:layout_height="wrap_content"
5         android:ellipsize="marquee"
6         android:singleLine="true"
7         android:text="这是一段很长的威武霸气的滚动的实现跑马灯效果的一段逼格很高的很有含义和涵养的文字"
8         />

fry.MyTextView

 1 package fry;
 2
 3 import android.content.Context;
 4 import android.util.AttributeSet;
 5 import android.widget.TextView;
 6
 7 public class MyTextView extends TextView{
 8
 9     public MyTextView(Context context, AttributeSet attrs, int defStyle) {
10         super(context, attrs, defStyle);
11         // TODO Auto-generated constructor stub
12     }
13
14     public MyTextView(Context context, AttributeSet attrs) {
15         super(context, attrs);
16         // TODO Auto-generated constructor stub
17     }
18
19     public MyTextView(Context context) {
20         super(context);
21         // TODO Auto-generated constructor stub
22     }
23
24     @Override
25     public boolean isFocused() {
26         // TODO Auto-generated method stub
27         return true;
28     }
29
30 }

二、解决方法

这句话的意思就是MyTextView类填充错误,

/textViewDemo1/res/layout/activity04.xml

1     <MyTextView
2         android:id="@+id/tv_runHorseLamp1"
3         android:layout_width="match_parent"
4         android:layout_height="wrap_content"
5         android:ellipsize="marquee"
6         android:singleLine="true"
7         android:text="这是一段很长的威武霸气的滚动的实现跑马灯效果的一段逼格很高的很有含义和涵养的文字"
8         />

可以看到我们使用的时候是直接用的类名,而在XML中引用类名要带上包名,

于是,我们把上述代码的第一行改成fry.MyTextView就对了

实现效果如下:

时间: 2024-10-09 08:12:28

InflateException:Bin file line #19:Error inflating class MyTextView的相关文章

Android项目部署时,发生AndroidRuntime:android.view.InflateException: Binary XML file line #168: Error inflating class错误

这个错误也是让我纠结了一天,当时写的项目在安卓虚拟机上运行都很正常,于是当我部署到安卓手机上时,点击登陆按钮跳转到用户主界面的时候直接结束运行返回登陆界面.    当时,我仔细检查了一下自己的代码,并没有发现什么问题,在logcat上显示的报错如下:AndroidRuntime:android.view.InflateException: Binary XML file line #168: Error inflating class(这是其中报错的最主要的一行信息).  于是我在百度上几乎查看

错误解决:android.view.InflateException: Binary XML file line #11: Error inflating class com.tony.timepicker.TimePicker

今天在做项目开发时遇到这么一个错误,完整的错误提示信息如下: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.tony.timepicker/com.tony.timepicker.MainActivity}: android.view.InflateException: Binary XML file line #11: Error inflating class com.tony.timepicke

bug_ _图片_android.view.InflateException: Binary XML file line #1: Error inflating class &lt;unknown&gt;

=========== 1   java.lang.RuntimeException: Unable to start activity ComponentInfo{com.zgan.community/com.zgan.community.activity.CommunityPolicitalDetailActivity}: android.view.InflateException: Binary XML file line #1: Error inflating class <unknow

android 细节之android.view.InflateException: Binary XML file line #95: Error inflating class(out of m)

今天的异常很有意思,叫做android.view.InflateException: Binary XML file line #95: Error inflating class(out of memory) . 其实是因为out of memory,导致 xml是不可能被充气成功,因此activity的onCreate方法中, setContentView(R.layout.***)也就不可能成功调用. 他出现在我有多个教学动画,并且播放的动画,是基于imageView,imageView的

android.view.InflateException: Binary XML file line #95: Error inflating class(out of memory) 。异常

android.view.InflateException: Binary XML file line #95: Error inflating class(out of memory) . 其实是因为out of memory,导致 xml是不可能被充气成功,因此activity的onCreate方法中, setContentView(R.layout.***)也就不可能成功调用. 他出现在我有多个教学动画,并且播放的动画,是基于imageView,imageView的背景是我们项目的大型图片

widget自定义控件【android.view.InflateException: Binary XML file line #2: Error inflating class...】

此错误比较难定位,场景是这样的:在一个widget中使用了自定义控件,始终会报 android.view.InflateException: Binary XML file line #2: Error inflating class...这个错误. 最后实在没有办法了,写了一个demo中只有一个重写的textview(仅仅是继承textview并无其他代码),将其引入到布局文件仍然报同样的错误. 后来经过查找资料,发现removeview比支持复杂的view,连listview都不支持,更不用

Caused by: android.view.InflateException: Binary XML file line #12: Error inflating class android.support.design.widget.TabLayout,TableLayout引起页面崩溃

在使用TableLayout的时候,运行引用程序直接Crash. FATAL EXCEPTION: main Process: com.edaixi.activity, PID: 9703 java.lang.RuntimeException: Unable to start activity ComponentInfo{com.edaixi.activity/com.edaixi.activity.PriceCenterActivity}: android.view.InflateExcept

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.ex.activity/com.ex.activity.LoginActivity}: android.view.InflateException: Binary XML file line #1: Error inflating class

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.ex.activity/com.ex.activity.LoginActivity}: android.view.InflateException: Binary XML file line #1: Error inflating class 异常解决方案: 是因为设置background的图片太大了,造成了内存溢出,在Activity设置onCreate

android.view.InflateException: Binary XML file line #8: Error inflating class &lt;unknown&gt;

错误打印部分代码: android.view.InflateException: Binary XML file line #8: Error inflating class <unknown> 02-02 11:43:11.420: E/AndroidRuntime(25333): at android.view.LayoutInflater.createView(LayoutInflater.java:613) 02-02 11:43:11.420: E/AndroidRuntime(25