2つのテキストフィールドを持つカスタムボタンを作成しようとしています。コードからインスタンスを作成すると、動作します。 XMLからインフレーションしようとすると、クラッシュします。
この問題を解決するためにこれまでに行ったこと:
私が読んだ質問から、最も一般的な原因は、属性セットを取得する必要なコンストラクタを定義していないことです。
MyClass(Context context, AttributeSet attrs) {
super(context, attrs);
}
私が持っているLogCatのエラーのリストの終わり近く:
Caused by: Java.lang.NoSuchMethodException: <init> [class Android.content.Context, interface Android.util.AttributeSet]
これは、私が他の多くの人と同じ間違いを犯したという結論につながる可能性がありますが、以下のコードを見ると、私haveは、このフォームのコンストラクターを定義しました。
私はすべての情報源が言うように正確にやっているようです。不足しているものを見ることができません。
src/com.soundconception.custombuttontest2/TitledValueButton.Java
package com.soundconception.custombuttontest2;
import Android.content.Context;
import Android.util.AttributeSet;
import Android.widget.Button;
public class TitledValueButton extends Button {
public TitledValueButton(Context context) {
super(context);
}
protected TitledValueButton(Context context, AttributeSet attrs) {
super(context, attrs);
}
}
res/values/attrs.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="TitledValueButton">
<attr name="titleText" format="string" />
</declare-styleable>
</resources>
res/layout/activity_main.xml
<RelativeLayout
xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res/com.soundconception.custombuttontest2"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:paddingBottom="@dimen/activity_vertical_margin"
Android:paddingLeft="@dimen/activity_horizontal_margin"
Android:paddingRight="@dimen/activity_horizontal_margin"
Android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<com.soundconception.custombuttontest2.TitledValueButton
Android:id="@+id/test_button"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text="1..2..3.."
app:titleText="Testing" />
</RelativeLayout>
src/com.soundconception.custombuttontest2/MainActivity.Java
package com.soundconception.custombuttontest2;
import Android.os.Bundle;
import Android.app.Activity;
import Android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
LogCat
threadid=1: thread exiting with uncaught exception (group=0x41a5a700)
FATAL EXCEPTION: main
Java.lang.RuntimeException: Unable to start activity ComponentInfo{com.soundconception.custombuttontest2/com.soundconception.custombuttontest2.MainActivity}: Android.view.InflateException: Binary XML file line #13: Error inflating class com.soundconception.custombuttontest2.TitledValueButton
at Android.app.ActivityThread.performLaunchActivity(ActivityThread.Java:2211)
at Android.app.ActivityThread.handleLaunchActivity(ActivityThread.Java:2261)
at Android.app.ActivityThread.access$600(ActivityThread.Java:141)
at Android.app.ActivityThread$H.handleMessage(ActivityThread.Java:1256)
at Android.os.Handler.dispatchMessage(Handler.Java:99)
at Android.os.Looper.loop(Looper.Java:137)
at Android.app.ActivityThread.main(ActivityThread.Java:5103)
at Java.lang.reflect.Method.invokeNative(Native Method)
at Java.lang.reflect.Method.invoke(Method.Java:525)
at com.Android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.Java:737)
at com.Android.internal.os.ZygoteInit.main(ZygoteInit.Java:553)
at dalvik.system.NativeStart.main(Native Method)
Caused by: Android.view.InflateException: Binary XML file line #13: Error inflating class com.soundconception.custombuttontest2.TitledValueButton
at Android.view.LayoutInflater.createView(LayoutInflater.Java:603)
at Android.view.LayoutInflater.createViewFromTag(LayoutInflater.Java:696)
at Android.view.LayoutInflater.rInflate(LayoutInflater.Java:755)
at Android.view.LayoutInflater.inflate(LayoutInflater.Java:492)
at Android.view.LayoutInflater.inflate(LayoutInflater.Java:397)
at Android.view.LayoutInflater.inflate(LayoutInflater.Java:353)
at com.Android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.Java:267)
at Android.app.Activity.setContentView(Activity.Java:1895)
at com.soundconception.custombuttontest2.MainActivity.onCreate(MainActivity.Java:12)
at Android.app.Activity.performCreate(Activity.Java:5133)
at Android.app.Instrumentation.callActivityOnCreate(Instrumentation.Java:1087)
at Android.app.ActivityThread.performLaunchActivity(ActivityThread.Java:2175)
... 11 more
Caused by: Java.lang.NoSuchMethodException: <init> [class Android.content.Context, interface Android.util.AttributeSet]
at Java.lang.Class.getConstructorOrMethod(Class.Java:423)
at Java.lang.Class.getConstructor(Class.Java:397)
at Android.view.LayoutInflater.createView(LayoutInflater.Java:568)
... 22 more
このコンストラクターがありません:
public TitledValueButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
このコンストラクターをカスタムボタンクラスに追加します。
もう1つのコンストラクターがありません。これを追加してクラッシュを削除します。
コンストラクタはパブリックモードである必要があります
public TitledValueButton(Context context, AttributeSet attrs) {
super(context, attrs); // This should be first line of constructor
}
そして
public TitledValueButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
コンストラクタはパブリックモードである必要があります
(ドル記号を使用して)レイアウトで非静的内部クラスを宣言しようとしたときに、同じエラーメッセージが表示されました。クラスにstatic
keywoardを追加するだけで機能しました。