我有我的android應用程序與Edittext,按鈕如何獲取Android上次調用的確切日期?
Edittext:允許用戶輸入他想要的數字。 按鈕:調用「呼叫」來撥打電話。
,我想辦法讓呼叫的確切日期和時間它完成
我的Java代碼之後:
公共字符串串; public String number = null; //
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button CallButton = (Button)findViewById(R.id.button1);
CallButton.setOnClickListener(this);
}
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
EditText txtcallnumber = null;
txtcallnumber = (EditText)findViewById(R.id.callEdit);
string = txtcallnumber.getText().toString();
number = "tel:" +string ;
Intent CallIntent = new Intent (Intent.ACTION_CALL,Uri.parse(number));
startActivity(CallIntent);
}
我該怎麼做?
在此先感謝
感謝很多 ,讓我理解新概念 幫我再很多 感謝 – 2014-11-01 20:09:37