要在我的 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 未定义类型字符串我该如何解决这个问题。