gpt4 book ai didi

java - 单击 TextView 打开计算器

转载 作者:行者123 更新时间:2023-12-02 08:03:26 39 4
gpt4 key购买 nike

我想在单击编辑文本字段后打开我制作的计算器。我已经编写了这段代码,但它不起作用

textOut1= (TextView) findViewById(R.id.tvGetInput1);         
TextView.OnEditorActionListener(textout1,EditorInfo.IME_NULL,com.easyPhys.start.calculator);

它强调了括号中的所有内容。我应该改变什么?

最佳答案

您尝试过 onFocusChange 吗?也许是这样的:

textOut1 = (TextView) findViewById(R.id.tvGetInput1);         
textOut1.setOnFocusChangeListener(new View.OnFocusChangeListener() {

@Override
public void onFocusChange(View v, boolean hasFocus) {

if(hasFocus) {
Intent i = new Intent(this, calculator.class);
startActivity(i);
}
}
});

关于java - 单击 TextView 打开计算器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8548205/

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