在我的android應用程序中發送消息我已經使用了下面的代碼。在android中發送消息
package wishme.code;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class Activity2 extends Activity{
public void onCreate(Bundle savedInstancestate) {
super.onCreate(savedInstancestate);
setContentView(R.layout.main2);
Button previous=(Button) findViewById(R.id.button_prev);
Button send=(Button) findViewById(R.id.button_send);
EditText ph_no=(EditText) findViewById(R.id.edit_phone);
EditText msg=(EditText) findViewById(R.id.edit_msg);
}
public void prevclickhandler(View view)
{
switch(view.getId())
{
case R.id.button_prev:
Intent intent=new Intent();
setResult(RESULT_OK,intent);
finish();
break;
case R.id.button_send:
**String ph_no= ph_no.getText().tostring();**
}}
}
但行高亮提示錯誤是 的getText是未定義string類型 我怎樣才能解決這個方法。
在一個側面說明,你並不需要聲明的如果你不打算修改它們,可以在'onCreate'中使用Button和EditText變量。系統在讀取XML文件時(在'setContentView'期間)爲您創建並設置它們。 'findViewById'函數只是引用已經存在的變量的一種方式。 – eternalmatt