我有一个自定义视图,但我无法使用它,因为与导致异常的命名空间相关的东西:
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.pc.easycalc, PID: 30694
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.pc.easycalc/com.example.pc.easycalc.MainActivity}: android.view.InflateException: Binary XML file line #0: Binary XML file line #0: Error inflating class MyDisplay
...
Caused by: android.view.InflateException: Binary XML file line #0: Binary XML file line #0: Error inflating class MyDisplay
Caused by: android.view.InflateException: Binary XML file line #0: Error inflating class MyDisplay
Caused by: java.lang.ClassNotFoundException: Didn't find class "android.view.MyDisplay" on path: DexPathList[[zip file "/data/app/com.example.pc.easycalc-1/base.apk",
我的自定义视图:
package com.example.pc.easycalc;
import android.content.Context;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.widget.TextView;
public class MyDisplay extends android.support.v7.widget.AppCompatTextView {
public MyDisplay(Context context, @Nullable AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
// ..
}
public MyDisplay(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
// ..
}
public MyDisplay(Context context) {
super(context);
// ..
}
}
Java代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); // here
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.pc.easycalc.MainActivity">
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
content_main.xml(使用我的自定义视图)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/root"
>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="10"
android:id="@+id/display"
style="DisplayContainer"
>
<TextView
android:id="@+id/hotDisplay"
android:textColor="@color/quasiWhite"
android:textSize="24sp"
android:text="12 +"
style="@style/DisplayStyle"
/>
<MyDisplay
android:id="@+id/resDisplay"
android:textSize="60sp"
android:text="0.0000000"
style="@style/DisplayStyle"
/>
</LinearLayout>
...
提前谢谢!
PD:关于此问题有几个主题,但我无法用自定义视图解决我的问题。
答案 0 :(得分:1)
您需要使用视图的完全限定名称。在布局xml中使用<com.example.pc.easycalc.MyDisplay>
。如果未指定完全限定名称,则LayoutInflater
默认为在android.widget
和android.view
中进行搜索,并且您的视图在这些包中不存在。
答案 1 :(得分:1)
问题定义为:
引起:java.lang.ClassNotFoundException:没有找到类 “android.view.MyDisplay”
您要在布局中声明视图:
<MyDisplay
android:id="@+id/resDisplay"
android:textSize="60sp"
android:text="0.0000000"
style="@style/DisplayStyle"
/>
但你必须设置完整的包(完全限定名称),我认为必须是:
<com.example.pc.easycalc.MyDisplay
android:id="@+id/resDisplay"
android:textSize="60sp"
android:text="0.0000000"
style="@style/DisplayStyle"
/>
答案 2 :(得分:1)
使用以下方式调用:
<com.example.pc.easycalc.MyDisplay
android:id="@+id/resDisplay"
android:textSize="60sp"
android:text="0.0000000"
style="@style/DisplayStyle"
/>
答案 3 :(得分:0)
它会给您一个例外,因为除了Google图书馆视图外,没有人可以创建一个不会在版面名称前面显示包名称的视图:
所以添加你的类前面的布局名称的包名......
融为一体。 ___。我显示