gpt4 book ai didi

java - 我的 android java 按钮显示并动画,但由于某种原因我的代码从未执行

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

我的 Android 应用程序中有一个按钮。

 <Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start scanning"
android:id="@+id/bStartScan"
android:enabled="true"
android:clickable="true"
android:layout_below="@+id/third_person_button"
android:layout_toEndOf="@+id/StitchPCButton"
android:longClickable="false" />

该按钮确实有动画效果,并且确实显示在我的应用程序中,但下面的代码均未执行。

public void onClick(View v) {
switch (v.getId()) {
case R.id.bStartScan:
findViewById(R.id.bStartScan).setEnabled(false);
...
...
break;
default:
Log.w(TAG, "Unrecognized button click.");
}
}

我的其他按钮工作正常,但我不明白为什么这个按钮拒绝触发。

有什么想法吗?有疑问吗?

提前非常感谢您。

最佳答案

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start scanning"
android:id="@+id/bStartScan"
android:layout_below="@+id/third_person_button"
android:layout_toEndOf="@+id/StitchPCButton"
/>

在您的 Activity/fragment 中使用它onCreate()在

      Button startBtn = (Button) findViewById(R.id.bStartScan);
startBtn.setonClicklistner(this);

删除 findViewById(R.id.bStartScan) from switch() 语句...

关于java - 我的 android java 按钮显示并动画,但由于某种原因我的代码从未执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31347027/

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