gpt4 book ai didi

java - 将编辑文本链接到按钮

转载 作者:行者123 更新时间:2023-12-01 22:53:57 25 4
gpt4 key购买 nike

我想知道如何将按钮链接到 edittext,以便每当将某个 id 放在 edittext 上并按下按钮时,它会将您发送到另一个页面并提供有关该页面的详细信息。我是初学者,请帮助我。

最佳答案

在 XML 文件中,您需要有 EditTextButton就像下面这样,

<EditText
android:id="@+id/txt"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Submit" />

你的代码应该是这样的。

public void onCreate(Bundle savedInstanceState) {

// Initialize edittext and button
EditText txt = (EditText) findViewById(R.id.txt);
Button btn = (Button) findViewById(R.id.btn);

// Set listener to the button
btn.setOnClickListener(new Button.OnClickListener() {
@Override
public void onClick(View v) {
String text = txt.getText().toString();
yourFunction(text);
}
});
}

private void yourFunction(String text) {
// Your search code goes here
}

关于java - 将编辑文本链接到按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58448067/

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