gpt4 book ai didi

java - 即使在新生成的 Activity 中,按钮也不起作用

转载 作者:行者123 更新时间:2023-12-01 18:15:14 26 4
gpt4 key购买 nike

我正在创建一个android应用程序,该项目相当大。我花了大约 3 周的时间来开发这个应用程序,并且有很多按钮,都可以正常工作;几乎所有(可能有一两个异常(exception))都在 XML 文件中定义,调用上下文中定义的类中的方法,如下所示:

(Toast 是伪的)

android:onclick="doSomething"

public void doSomething(View view) {Toast "Hello world"};

异常(exception)情况是:

    Button button1 = findViewById(R.id.helloWorldButton);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast"helloworld";
}
});

现在,即使是新生成的基本 Activity ;默认的 FAB 按钮甚至不调用示例零食栏。

我的问题的根源;是否发生了任何可能导致错误消息的事情:

“在父级或祖先上下文中找不到 View 上定义的 android:onClick 属性的 doSomething(View) 方法”

即使在新生成的 Activity 中(由 android studio 生成)。

XML Activity :

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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"
tools:context="eatec.cookery.StepActivity">

<include layout="@layout/content_step" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

XML 内容:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="eatec.cookery.StepActivity"
tools:showIn="@layout/activity_step">
</android.support.constraint.ConstraintLayout>

Java:

package eatec.cookery;

import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.Toast;

public class StepActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_step);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
helloWorldMethod();
}
});
}


public void helloWorldMethod() {
Toast.makeText(this, "hello world", Toast.LENGTH_SHORT).show();
}

}

最佳答案

之前的 Activity 使用了设置内容,而不是使用新 Intent 启动新 Activity 。哎呀

关于java - 即使在新生成的 Activity 中,按钮也不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60383112/

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