我当前的活动类“TimerAct.java”使用30secs的计时器。完成计时器后,必须启动一个新的活动“SMS.java”。为此,在onFinish()中,我调用当前活动的方法来启动新活动。但我得到一个“强制关闭”的消息。任何人都可以帮助我吗?
以下是代码:
//TimerAct.java
public class TimerAct extends Activity
{
static TextView timeDisplay;
Timer t;
int length = 30000;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.time);
timeDisplay = (TextView) findViewById(R.id.timer);
timeDisplay.setText("Time left: " + length / 1000);
t = new Timer(length, 1000);
t.start();
}
public void mess()
{
Intent i = new Intent(this, SMS.class);
startActivity(i);
}
}
//Timer.java
public class Timer extends CountDownTimer
{
public Timer(long millisInFuture, long countDownInterval)
{
super(millisInFuture, countDownInterval);
}
public void onTick(long millisUntilFinished)
{
TimerAct.timeDisplay.setText("Time left: " + millisUntilFinished / 1000);
}
public void onFinish()
{
TimerAct.timeDisplay.setText("Time over!!!");
TimerAct ta = new TimerAct();
ta.mess();
}
}
//SMS.java
public class SMS extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
String phoneNo = "9791192196";
String message = "Hello";
sendSMS(phoneNo, message);
}
//---sends an SMS message to another device---
private void sendSMS(String phoneNumber, String message)
{
PendingIntent pi = PendingIntent.getActivity(this, 0, new Intent(this, SMS.class), 0);
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, pi, null);
}
}
答案 0 :(得分:1)
在
public void onFinish()
使用类似:
Intent fIntent = new Intent();
fIntent.setClassName("com.pkgname", "com.pkgname.SMSActivity");
startActivity(fIntent);
修改/更新强>
您不需要在新类中扩展新的CountDowntimer,您可以直接覆盖此处所需的方法。 作为班级成员,你可以拥有这样的东西..
private CountDownTimer myTimer = new CountDownTimer(30000, 1000) {
//This will give you 30 sec timer with each tick at 1 second
public void onTick(long millisUntilFinished) {
timeDisplay.setText("Time left: " + length / 1000);
}
public void onFinish() {
timeDisplay.setText("Time over!!!");
Intent fIntent = new Intent();
fIntent.setClassName("com.pkgname", "com.pkgname.SMSActivity");
startActivityForResult(fIntent,0);
}
};
使用onCreate():
TextView timeDisplay = (TextView) findViewById(R.id.timer);
myTimer.start();