"Unfortunately,<App name> has stopped working" 每当我点击一个按钮时弹出
"Unfortunately,<App name> has stopped working" Pops up whenever i click a button
我正在尝试使用 android studio 制作一个简单的计算器。但是,当我单击带有文本“1”的按钮时,应用程序崩溃并且带有文本“2”的按钮没有
做任何事情。我已经正确地将 android:Onclick = "" 添加到 xml。请查看不同的源代码文件。
**PS:目前,我正在尝试让前两个按钮起作用**
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
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="com.example.meenakshi.calculator.MainActivity">
<GridLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_text"
android:id="@+id/button"
android:layout_row="0"
android:layout_column="0"
android:textColor="@color/abc_search_url_text_pressed"
android:nestedScrollingEnabled="false"
android:onClick="press1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button16"
android:layout_row="0"
android:layout_column="3"
android:text="@string/buttond_text" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button4_text"
android:id="@+id/button4"
android:layout_row="1"
android:layout_column="0" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text= "@string/button2_text"
android:id="@+id/button2"
android:layout_row="0"
android:layout_column="1"
android:onClick="press2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button3_text"
android:id="@+id/button3"
android:layout_row="0"
android:layout_column="2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttonmul_text"
android:id="@+id/button15"
android:layout_row="1"
android:layout_column="3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button7_text"
android:id="@+id/button7"
android:layout_row="2"
android:layout_column="0" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button5_text"
android:id="@+id/button5"
android:layout_row="1"
android:layout_column="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button6_text"
android:id="@+id/button6"
android:layout_row="1"
android:layout_column="2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button8_text"
android:id="@+id/button8"
android:layout_row="2"
android:layout_column="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttonm_text"
android:id="@+id/button14"
android:layout_row="2"
android:layout_column="3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button._text"
android:id="@+id/button12"
android:layout_row="3"
android:layout_column="0" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button0_text"
android:id="@+id/button10"
android:layout_row="3"
android:layout_column="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button9_text"
android:id="@+id/button9"
android:layout_row="2"
android:layout_column="2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttone_text"
android:id="@+id/button11"
android:layout_row="3"
android:layout_column="2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttonp_text"
android:id="@+id/button13"
android:layout_row="3"
android:layout_column="3" />
</GridLayout>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/result"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="32dp"
android:inputType="text" />
</RelativeLayout>
MainActivity.java
package com.example.meenakshi.calculator;
import android.content.DialogInterface;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.EditText;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button btn = (Button)findViewById(R.id.button);
EditText edittext = (EditText)findViewById(R.id.result);
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void press1(View v){
edittext.setText("1");
}
public void press2(View v){
edittext.setText("2");
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.meenakshi.calculator">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
堆栈跟踪
java.lang.IllegalStateException: Could not find method press(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:327)
at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:284)
at android.view.View.performClick(View.java:4438)
at android.view.View$PerformClick.run(View.java:18422)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5001)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
at dalvik.system.NativeStart.main(Native Method)
编辑
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button btn = (Button)findViewById(R.id.button);
Button btn2 = (Button)findViewById(R.id.button2);
EditText edittext = (EditText)findViewById(R.id.result);
}
试试这个:
public class MainActivity extends AppCompatActivity {
Button btn;
EditText edittext;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
edittext = (EditText)findViewById(R.id.result);
btn = (Button)findViewById(R.id.button);
}
您必须在 setContentView() 之后调用 findViewById()。
呼叫
Button btn = (Button)findViewById(R.id.button);
EditText edittext = (EditText)findViewById(R.id.result);
在任何方法之外都会导致它在构造函数中正确执行,在 activity 的实例上调用 onCreate() 之前只有 Android 系统调用。届时 return 将为空。稍后在 onCreate() 方法中,您将为此 activity
设置内容视图
setContentView(R.layout.activity_main);
所以请在 onCreate() 方法中调用 setContentView() 之后移动这两行。
这里的问题是 Activity 有生命周期,这里我们有以下事件序列:
- 字段初始化 <- 这里你初始化了 Button 和 EditText(此时没有布局,所以 findViewById returns null)
- onCreate() <- 在这里你膨胀布局(在 setContentView() 之后你可以在布局中找到你的视图)
一些建议:
不要在 xml 中使用 onClick - 这使得某些东西监听 onClick 事件变得不明显,并且通常(在这种情况下)它是问题的根源。使用 findViewById(R.id.button).setOnClickListener();
这很明显。
onCreate() 应该是初始化 activity
中所有内容的方法
更新
最后你会得到这样的东西:
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
private EditText result;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
result = (EditText) findViewById(R.id.result);
findViewById(R.id.button1).setOnClickListener(this);
findViewById(R.id.button2).setOnClickListener(this);
}
@Override
public void onClick(View v) {
Button clickedBtn = (Button) v;
switch (v.getId()){
case (R.id.button1):
case (R.id.button2):
result.append(clickedBtn.getText());
break;
default:
//some other
break;
}
}
}
注意: 最好不要将数字和符号放在 strings.xml - 尽管 AS 对此有所抱怨,但你不会在你的程序中重复使用它没有关于翻译这些字符串的情况:)
我正在尝试使用 android studio 制作一个简单的计算器。但是,当我单击带有文本“1”的按钮时,应用程序崩溃并且带有文本“2”的按钮没有 做任何事情。我已经正确地将 android:Onclick = "" 添加到 xml。请查看不同的源代码文件。
**PS:目前,我正在尝试让前两个按钮起作用**
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
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="com.example.meenakshi.calculator.MainActivity">
<GridLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_text"
android:id="@+id/button"
android:layout_row="0"
android:layout_column="0"
android:textColor="@color/abc_search_url_text_pressed"
android:nestedScrollingEnabled="false"
android:onClick="press1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button16"
android:layout_row="0"
android:layout_column="3"
android:text="@string/buttond_text" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button4_text"
android:id="@+id/button4"
android:layout_row="1"
android:layout_column="0" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text= "@string/button2_text"
android:id="@+id/button2"
android:layout_row="0"
android:layout_column="1"
android:onClick="press2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button3_text"
android:id="@+id/button3"
android:layout_row="0"
android:layout_column="2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttonmul_text"
android:id="@+id/button15"
android:layout_row="1"
android:layout_column="3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button7_text"
android:id="@+id/button7"
android:layout_row="2"
android:layout_column="0" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button5_text"
android:id="@+id/button5"
android:layout_row="1"
android:layout_column="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button6_text"
android:id="@+id/button6"
android:layout_row="1"
android:layout_column="2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button8_text"
android:id="@+id/button8"
android:layout_row="2"
android:layout_column="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttonm_text"
android:id="@+id/button14"
android:layout_row="2"
android:layout_column="3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button._text"
android:id="@+id/button12"
android:layout_row="3"
android:layout_column="0" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button0_text"
android:id="@+id/button10"
android:layout_row="3"
android:layout_column="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button9_text"
android:id="@+id/button9"
android:layout_row="2"
android:layout_column="2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttone_text"
android:id="@+id/button11"
android:layout_row="3"
android:layout_column="2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttonp_text"
android:id="@+id/button13"
android:layout_row="3"
android:layout_column="3" />
</GridLayout>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/result"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="32dp"
android:inputType="text" />
</RelativeLayout>
MainActivity.java
package com.example.meenakshi.calculator;
import android.content.DialogInterface;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.EditText;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button btn = (Button)findViewById(R.id.button);
EditText edittext = (EditText)findViewById(R.id.result);
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void press1(View v){
edittext.setText("1");
}
public void press2(View v){
edittext.setText("2");
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.meenakshi.calculator">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
堆栈跟踪
java.lang.IllegalStateException: Could not find method press(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:327)
at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:284)
at android.view.View.performClick(View.java:4438)
at android.view.View$PerformClick.run(View.java:18422)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5001)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
at dalvik.system.NativeStart.main(Native Method)
编辑
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button btn = (Button)findViewById(R.id.button);
Button btn2 = (Button)findViewById(R.id.button2);
EditText edittext = (EditText)findViewById(R.id.result);
}
试试这个:
public class MainActivity extends AppCompatActivity {
Button btn;
EditText edittext;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
edittext = (EditText)findViewById(R.id.result);
btn = (Button)findViewById(R.id.button);
}
您必须在 setContentView() 之后调用 findViewById()。 呼叫
Button btn = (Button)findViewById(R.id.button);
EditText edittext = (EditText)findViewById(R.id.result);
在任何方法之外都会导致它在构造函数中正确执行,在 activity 的实例上调用 onCreate() 之前只有 Android 系统调用。届时 return 将为空。稍后在 onCreate() 方法中,您将为此 activity
设置内容视图setContentView(R.layout.activity_main);
所以请在 onCreate() 方法中调用 setContentView() 之后移动这两行。
这里的问题是 Activity 有生命周期,这里我们有以下事件序列:
- 字段初始化 <- 这里你初始化了 Button 和 EditText(此时没有布局,所以 findViewById returns null)
- onCreate() <- 在这里你膨胀布局(在 setContentView() 之后你可以在布局中找到你的视图)
一些建议:
不要在 xml 中使用 onClick - 这使得某些东西监听 onClick 事件变得不明显,并且通常(在这种情况下)它是问题的根源。使用 findViewById(R.id.button).setOnClickListener();
这很明显。
onCreate() 应该是初始化 activity
中所有内容的方法更新
最后你会得到这样的东西:
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
private EditText result;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
result = (EditText) findViewById(R.id.result);
findViewById(R.id.button1).setOnClickListener(this);
findViewById(R.id.button2).setOnClickListener(this);
}
@Override
public void onClick(View v) {
Button clickedBtn = (Button) v;
switch (v.getId()){
case (R.id.button1):
case (R.id.button2):
result.append(clickedBtn.getText());
break;
default:
//some other
break;
}
}
}
注意: 最好不要将数字和符号放在 strings.xml - 尽管 AS 对此有所抱怨,但你不会在你的程序中重复使用它没有关于翻译这些字符串的情况:)