从 EditText 获取文本字符串?

发布于 2024-10-22 03:03:24 字数 2144 浏览 2 评论 0原文

看来我不知道如何从 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();
        }
    });
}

It seems I can't figure out how to get the text string out of EditText.
I want to use the text from the EditText at pressing the button.

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>

My Activity :

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();
        }
    });
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情话已封尘 2024-10-29 03:03:24
EditText txtDescription =
        (EditText) layout.findViewById(R.id.txtDescription);


String message = txtDescription.getText().toString(); 
EditText txtDescription =
        (EditText) layout.findViewById(R.id.txtDescription);


String message = txtDescription.getText().toString(); 
情绪操控生活 2024-10-29 03:03:24

试试这个:

EditText edt = (EditText)findViewById(R.id.edittext);
String xyz = edt.getText().toString();

Try this :

EditText edt = (EditText)findViewById(R.id.edittext);
String xyz = edt.getText().toString();
荭秂 2024-10-29 03:03:24

自己解决了问题:

final EditText edittextDescription = (EditText) findViewById(R.id.edittext);

必须是

final EditText edittextDescription =  (EditText)layout.findViewById(R.id.txtDescription);

然后我可以这样做来获取字符串

String s = edittext.getText().toString();

Solved the problem myself:

final EditText edittextDescription = (EditText) findViewById(R.id.edittext);

must be

final EditText edittextDescription =  (EditText)layout.findViewById(R.id.txtDescription);

And then I can do this to get the string

String s = edittext.getText().toString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文