button.onclick() 导致“不幸的是 xxx 已停止工作
Posted
技术标签:
【中文标题】button.onclick() 导致“不幸的是 xxx 已停止工作【英文标题】:button.onclick() causes "Unfortunately xxx has stopped working 【发布时间】:2015-08-12 13:37:12 【问题描述】:android 新手。尝试基于 Web 示例制作简单的 SMS 文本信使(用于更高目的)。代码如下。手机是 S4 mini (API19)。 当“sendSMSmessage()”作为 onCreate 的一部分被调用时,系统工作(文本消息正确发送)。一旦我尝试设置 onClick 中断 - 代码响应(在电话上)“不幸的是 xxx 已停止工作”。尝试过扩展活动和 AppCompatActivity(如 cmets 所示)。缺少 onClick 方法调用的某种设置/参考?感谢您的帮助。
package com.example.tas_pb_usr1.ArtSafe;
import android.app.Activity;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
//public class MainActivity extends AppCompatActivity
public class MainActivity extends Activity
// Button sendBtn = (Button) findViewById(R.id.Sms_send_button);
Button sendBtn;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
kkBtnSetup();
sendSMSMessage();
protected void sendSMSMessage()
Log.i("Send SMS", "");
/* String phoneNo = txtphoneNo.getText().toString();
String message = txtMessage.getText().toString();*/
String phoneNo = "1234567";
String currentDateTimeString = DateFormat.getDateTimeInstance().toString();
Calendar c = Calendar.getInstance();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = df.format(c.getTime());
String message = "Some SMS text " + formattedDate;
try
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, message, null, null);
Toast.makeText(getApplicationContext(), "SMS sent.", Toast.LENGTH_LONG).show();
catch (Exception e)
Toast.makeText(getApplicationContext(), "SMS faild, please try again.", Toast.LENGTH_LONG).show();
e.printStackTrace();
@Override
public boolean onCreateOptionsMenu(Menu menu)
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
@Override
public boolean onOptionsItemSelected(MenuItem item)
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings)
return true;
return super.onOptionsItemSelected(item);
public void kkBtnSetup()
sendBtn.setOnClickListener(new View.OnClickListener()
public void onClick(View v)
sendSMSMessage();
);
这是布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_
android:layout_ android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<TextView android:text="@string/hello_world" android:layout_
android:layout_
android:id="@+id/textView" />
<Button
style="?android:attr/buttonStyleSmall"
android:layout_
android:layout_
android:text="Send SMS"
android:id="@+id/Sms_send_button"
android:layout_below="@+id/textView"
android:layout_toEndOf="@+id/textView"
android:layout_marginTop="93dp" />
</RelativeLayout>
【问题讨论】:
能否请您发布您的日志堆栈 请粘贴您在应用崩溃时收到的 logcat 消息。了解导致崩溃的代码部分对您和我们都有帮助。 您是否在清单中添加了权限请在 onCreate 方法中添加该行。
public class MainActivity extends Activity
Button sendBtn;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sendBtn = (Button) findViewById(R.id.Sms_send_button);
kkBtnSetup();
sendSMSMessage();
protected void sendSMSMessage()
Log.i("Send SMS", "");
/* String phoneNo = txtphoneNo.getText().toString();
String message = txtMessage.getText().toString();*/
String phoneNo = "1234567";
String currentDateTimeString = DateFormat.getDateTimeInstance().toString();
Calendar c = Calendar.getInstance();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = df.format(c.getTime());
String message = "Some SMS text " + formattedDate;
try
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, message, null, null);
Toast.makeText(getApplicationContext(), "SMS sent.", Toast.LENGTH_LONG).show();
catch (Exception e)
Toast.makeText(getApplicationContext(), "SMS faild, please try again.", Toast.LENGTH_LONG).show();
e.printStackTrace();
@Override
public boolean onCreateOptionsMenu(Menu menu)
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
@Override
public boolean onOptionsItemSelected(MenuItem item)
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings)
return true;
return super.onOptionsItemSelected(item);
public void kkBtnSetup()
sendBtn.setOnClickListener(new View.OnClickListener()
public void onClick(View v)
sendSMSMessage();
);
【讨论】:
【参考方案2】:请使用这种方式,如果使用这种逻辑,则无需添加按钮 onclickListner 和 kkBtnSetup()
。
<Button
android:id="@+id/Sms_send_button"
android:layout_
android:layout_
android:text="Send SMS"
android:layout_below="@+id/textView"
android:layout_toEndOf="@+id/textView"
android:onClick="sendSMSMessage"/>
使用 android:onClick 属性,我们声明了必须出现在父 Activity 上的方法名称。
public void sendSMSMessage(View v)
String phoneNo = "1234567";
String currentDateTimeString = DateFormat.getDateTimeInstance().toString();
Calendar c = Calendar.getInstance();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = df.format(c.getTime());
String message = "Some SMS text " + formattedDate;
try
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, message, null, null);
Toast.makeText(getApplicationContext(), "SMS sent.", Toast.LENGTH_LONG).show();
catch (Exception e)
Toast.makeText(getApplicationContext(), "SMS faild, please try again.", Toast.LENGTH_LONG).show();
e.printStackTrace();
【讨论】:
【参考方案3】:发送按钮未定义且为空,因此您应该成为 NullPointerException。添加这一行
Button sendBtn = (Button) findViewById(R.id.Sms_send_button);
在调用 kkBtnSetup() 方法之前进入您的 onCreate 方法
所以你的 onCreate 方法应该是这样的:
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sendBtn = (Button) findViewById(R.id.Sms_send_button);
kkBtnSetup();
sendSMSMessage();
【讨论】:
【参考方案4】:在设置点击侦听器之前,您没有初始化按钮。像这样。
Button sendBtn;
你应该使用
sendBtn = (Button) findViewById(R.id.Sms_send_button);
在onCreate()
里面这样
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sendBtn = (Button) findViewById(R.id.Sms_send_button);
kkBtnSetup();
sendSMSMessage();
【讨论】:
【参考方案5】:使用初始化发送按钮
sendBtn = (Button) findViewById(R.id.Sms_send_button);
在这行之后
setContentView(R.layout.activity_main);
【讨论】:
【参考方案6】:我认为你必须在使用之前初始化按钮,在你的函数kkBtnSetup()
sendBtn = (Button) findViewById(R.id.Sms_send_button);
【讨论】:
以上是关于button.onclick() 导致“不幸的是 xxx 已停止工作的主要内容,如果未能解决你的问题,请参考以下文章
尝试在rails中添加button_tag会导致意外的tIDENTIFIER语法错误
ExtJS button2 onClick 按组件执行click button1