gpt4 book ai didi

java - 从 EditText 获取文本字符串?

转载 作者:IT老高 更新时间:2023-10-28 20:42:10 26 4
gpt4 key购买 nike

我似乎不知道如何从 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>

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

最佳答案

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


String message = txtDescription.getText().toString();

关于java - 从 EditText 获取文本字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5324941/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com