EditText
からテキスト文字列を取得する方法がわからないようです。ボタンを押すときにEditText
のテキストを使用したい。
layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:id="@+id/popup_menu_root"
Android:background="#FFFFFF"
Android:orientation="vertical"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent" >
<Button Android:id="@+id/popup_menu_button"
Android:text="ok"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content" />
<EditText
Android:id="@+id/edittext"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"/>
</LinearLayout>
私の活動:
public class MyClass extends Activity {
public String txtCheckin = "???";
private String txtDescription = "???";
private PopupWindow pw;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
// get the instance of the LayoutInflater
LayoutInflater inflater = (LayoutInflater) MyClass.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// inflate our view from the corresponding XML file
final View layout = inflater.inflate(R.layout.popuplayout, (ViewGroup)findViewById(R.id.popup_menu_root));
// create a 100px width and 200px height popup window
pw = new PopupWindow(layout, 100, 200, true);
final EditText edittextDescription = (EditText) findViewById(R.id.edittext);
// set actions to buttons we have in our popup
Button button = (Button)layout.findViewById(R.id.popup_menu_button);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View vv) {
if (edittextDescription.getText() != null)
{
String newString = edittextDescription.getText().toString();
transmitCheck("MANUAL", txtCheckin, "1", newString);
}
else
{
transmitCheck("MANUAL", txtCheckin, "1", "???");
}
finish();
}
});
}
EditText txtDescription =
(EditText) layout.findViewById(R.id.txtDescription);
String message = txtDescription.getText().toString();
これを試して :
EditText edt = (EditText)findViewById(R.id.edittext);
String xyz = edt.getText().toString();
自分で問題を解決しました:
final EditText edittextDescription = (EditText) findViewById(R.id.edittext);
でなければなりません
final EditText edittextDescription = (EditText)layout.findViewById(R.id.txtDescription);
そして、私はこれをして文字列を取得することができます
String s = edittext.getText().toString();