我想在按下按钮后将EditText重置为空的“空格”或“提示”,该按钮将完成来自EditText字段输入的活动.
我的Android冒险因此召唤.
干杯.谢谢 !!
//************——————-SEND SMS—————-*********//
btnSendSMS = (Button)findViewById(R.id.sms);
btnSendSMS.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
sendSMS(dispEd.getText().toString(),msgEd.getText().toString());
}
private void sendSMS(String phoneNumber,String msg) {
// TODO Auto-generated method stub
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber,null,msg,null);
}
});
}
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:id=”@+id/edit”/>
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:id=”@+id/msg”/>