// ---sends an SMS message to another device---
private void sendSMS(String phoneNumber, String message) {
int i;
SmsManager sms = SmsManager.getDefault();
int amount = 10; // just making 10 the default if the EditText has an
// invalid value
try {
amount = Integer.parseInt(smsamount.getText().toString());
} catch (NumberFormatException smsamount) {
}
for (i = 0; i < amount; i++) {
if (amount < 100)
sms.sendTextMessage(phoneNumber, null, message, null, null);
else
Toast.makeText(getBaseContext(),
"Please enter an amount less than 100.",
Toast.LENGTH_SHORT).show();
}
}
这一工作,但玩具在屏幕上停留了一分钟。 即便在脱光后,它仍留在屏幕上。 我试图在发出电文之前将电线变换到最前,但迫使其关闭。 难道这是我不得不使用这里的黑板:。 http://thinkandroid.wordpress.com/ 201002/19/indefinite-toast-hack/。 缩短时间?