gpt4 book ai didi

java - 尝试做一个公共(public)方法

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

我想创建一个方法,当我点击它时打开一个弹出窗口,并且标题和文本将自动打开,如下所示:

    public void Display(String test){



new AlertDialog.Builder(this).setTitle(getTitle()).setMessage(test).setNeutralButton("close", new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub

}
}).show();

}

但是 test 是一个字符串,而 set Message 不接受字符串,并且它将来自资源 XML,例如 Strings.xml。所以我不知道如何做到这一点。而“getTitle()”我认为它不起作用。我获取标题的方法是这个。

TextView str = new TextView(this);
str.setText(parent.getItemAtPosition(position).toString());
String title = str.getText().toString();

最佳答案

setMessage 确实接受字符串。查看文档:

setMessage(CharSequence 消息)

您可以传入一个字符串。您尝试编译代码吗?

关于java - 尝试做一个公共(public)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3653057/

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