1
我想將視圖的子類添加到我的activity_main.xml中,如this。xml佈局中的自定義視圖不起作用
但是,設備和模擬器直接退出應用程序。錯誤似乎是錯誤充氣類com.example.androidtest.PuzzleView
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.example.androidtestapp.PuzzleView
android:id="@+id/puzzleView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="60"/>
<include
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="40"
layout="@layout/activity_input"/>
</LinearLayout>
和
package com.example.androidtestapp;
public class PuzzleView extends View {
public PuzzleView(Context context) {
super(context);
setFocusable(true);
setFocusableInTouchMode(true);
}
}
你也可以發佈錯誤嗎? – 2012-08-15 14:37:30
我已經解決了這個問題,但是我無法將答案發布到另外7個小時!我只需要將所有三個構造函數重寫添加到類,如[this](http://stackoverflow.com/questions/3739661/android-error-inflating-class)。 – rickyoswald 2012-08-15 14:38:01
你忘了構造函數? '公共PuzzleView(上下文環境,AttributeSet attrs)' – KoVadim 2012-08-15 14:39:07