我已在单个项目中启动该程序,该程序正常运行。
然而,当我复制并粘贴到一个更大的项目时,它在logcat中给了我更大的错误。
FATAL EXCEPTION: main Process: com.example.alan.mainactivity, PID: 11545 java.lang.IllegalStateException: Could not find method insert(View) in a parent or ancestor Context for android:onClick attribute defined on view class android.support.v7.widget.AppCompatButton with id 'button' at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.resolveMethod(AppCompatViewInflater.java:307) at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:266)
at android.view.View.performClick(View.java:5198)
at android.view.View$PerformClick.run(View.java:21147)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:5417)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
答案 0 :(得分:8)
我发现了错误。
在布局second_layout.xml
中,您使用Button
android:onClick="insert"
此布局包含在activity_user_profile.xml
此activity_user_profile.xml
用于Main2Activity.java
所以,这就是问题所在:
"插入按钮"正在Main2Activity.java
中使用。但是,该类没有任何方法public void insert(View view)
因此,请将此添加到 Main2Activity.java :
public void insert(View view){
// Add the code that you want
// Or do nothing if you want
}
<强> Rememeber 强>
如果在布局文件(xml)中设置任何onClick
事件,则必须在将使用该布局的父活动中创建该方法。
答案 1 :(得分:0)
我正面临着同样的问题。问题是我在xml布局中从onClick调用了一个公共方法。在该公共方法中,我正在同一类中调用另一个私有方法。
我将班级从私有改为公开,并且有效。
XML布局:
<Button
android:layout_width="48dp"
android:layout_height="48dp"
android:onClick="increment"
android:text="+" />
班级:
public void increment(View view){
quantity = quantity + 1;
display(quantity);
}
private void display(int number) {
TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
quantityTextView.setText("" + number);
}
我将显示方式从私有更改为公开,并且可行。