gpt4 book ai didi

java - 按钮 OnClickListener 给出 ViewPostImeInputStage ACTION_DOWN 错误

转载 作者:行者123 更新时间:2023-12-02 05:21:53 28 4
gpt4 key购买 nike

我正在尝试创建一个简单的 Android 程序。我创建了一个 Activity ,并仅添加了一个按钮,在该按钮上设置了一个 OnclickListener 以在日志中打印“Hello World”,这是一项简单的任务。但每当我运行该应用程序时,每次单击该按钮时,我都会收到错误“ViewPostImeInputStage ACTION_DOWN”。

我尝试过将布局放入 FragmentLayout 中,或者构建另一个项目,或者更新 Android Studio,所有这些都是此处推荐的解决方案。这些都不起作用,我仍然得到同样可怕的“ViewPostImeInputStage ACTION_DOWN”。

这是我的java文件

Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

button= findViewById(R.id.button);

button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
System.out.print("Hello World");
}
});
}

和我的 xml 文件

   `<FrameLayout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="243dp"
android:text="Button" />
</RelativeLayout></FrameLayout>

如果有人能帮我解决这个问题,我将不胜感激。 OnclickListener 一直对我来说工作顺利,但由于某种原因,现在我无法完成最基本的任务。救命!

最佳答案

Germain Edouard 尝试删除前面的反引号 `

关于java - 按钮 OnClickListener 给出 ViewPostImeInputStage ACTION_DOWN 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56255331/

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