Im building an app that sends an SMS. Its sending the SMS fine, but for some reason the intent restarts and when it does, its not getting the sent extras from the previous intent the second time around and it FC's. I have tried calling finish() after the textmessage is sent, but to no avail. It goes back to the previous activity, and then crashes. Anyone else ever had this problem? Here is my code
package com.bv.crimestoppers;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
public class tip extends Activity implements OnClickListener{
public static String title;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tip);
Bundle extras = getIntent().getExtras();
title = extras.getString("com.bv.crimestoppers.title");
Button submitButton = (Button)findViewById(R.id.tip_button);
submitButton.setOnClickListener(this);
EditText tipText = (EditText)findViewById(R.id.tip_text2);
//tipText.setText(title);
}
private void sendSMS(String phoneNumber, String message)
{
PendingIntent pi = PendingIntent.getActivity(this, 0,
new Intent(this, tip.class), 0);
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, "0000", message, pi, null);
finish();
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case (R.id.tip_button):
sendSMS("6149402521", "CMH");
}
}
}
adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and look at the stack trace associated with your crash. – CommonsWare Feb 14 '11 at 22:35