gpt4 book ai didi

android - 从按下的按钮获取文本

转载 作者:IT老高 更新时间:2023-10-28 13:23:54 25 4
gpt4 key购买 nike

如何从按下的按钮中获取文本? (安卓)

我可以从按钮获取文本:

String buttonText = button.getText();

我可以通过按下的按钮获取 id:

int buttinID = view.getId();

目前我不知道如何获取按下按钮上的文本。

public void onClick(View view) {
// Get the text on the pressed button
}

最佳答案

您在 onClick() 上获得的 View 就是您要查找的 Button。

public void onClick(View v) {
// 1) Possibly check for instance of first
Button b = (Button)v;
String buttonText = b.getText().toString();
}

1) 如果您使用非匿名类作为 onClickListener,您可能需要检查转换之前的 View 类型,因为它可能与按钮不同。

关于android - 从按下的按钮获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5620772/

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