gpt4 book ai didi

java - Android float 操作按钮未被识别

转载 作者:行者123 更新时间:2023-11-30 00:37:29 26 4
gpt4 key购买 nike

当我在编辑器中查看我的代码时,似乎没有任何问题。但是,当我在手机上运行代码并尝试从一个 Activity 转到另一个具有 float 操作按钮的 Activity 时, float 操作按钮无法通过 Id 找到 View ,尽管 java 和 XML 中的 ID 完全相同。

我的Java:

package com.test.app.app2_test1;

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

public class TermsOfUse extends AppCompatActivity {
FloatingActionButton mFloatingActionButton;

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

mFloatingActionButton = (FloatingActionButton) mFloatingActionButton.findViewById(R.id.terms_back_fab);

mFloatingActionButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
}
}

我的 XML:

<?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="com.test.app.app2_test1.TermsOfUse"
android:background="@color/backdrop">

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="44dp"
android:orientation="vertical">

</ScrollView>

<View
android:layout_gravity="bottom"
android:layout_width="match_parent"
android:layout_height="44dp"
android:background="@color/colorPrimary"
android:elevation="4dp"/>

<android.support.design.widget.FloatingActionButton
android:id="@+id/terms_back_fab"
android:layout_gravity="bottom"
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_margin="16dp"
android:src="@drawable/ic_arrow_back"
app:pressedTranslationZ="12dp"/>

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

我在控制台中收到的消息如下:

Attempt to invoke virtual method 'android.view.View android.support.design.widget.FloatingActionButton.findViewById(int)' on a null object reference

如有任何帮助,我们将不胜感激。

最佳答案

您正在将 View 视为其自身的 subview !

替换:

mFloatingActionButton = (FloatingActionButton) mFloatingActionButton.findViewById(R.id.terms_back_fab);

与:

mFloatingActionButton = (FloatingActionButton)findViewById(R.id.terms_back_fab);

关于java - Android float 操作按钮未被识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43170738/

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