gpt4 book ai didi

java - 在 fragment 内部实例化 fragment 类的实例时无法到达的语句

转载 作者:行者123 更新时间:2023-12-01 11:00:23 26 4
gpt4 key购买 nike

我有一个名为 ProfilePicBtn 的 fragment ,我尝试将其加载到名为 HomeFragment 的 fragment 类中。但是当我尝试实例化 ProfilePicBtn 的实例时,我收到一条错误消息,指出无法访问语句。注意我正在尝试遵循开发人员文档 here .

package com.example.adam.hilo;

import android.os.Bundle;
import android.view.LayoutInflater;
import android.app.Fragment;
import android.view.View;
import android.view.ViewGroup;

public class HomeFragment extends Fragment {
public HomeFragment() {
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_home, container, false);

Fragment profileBtnFragment = new ProfileBtnFragment();
}
}

最佳答案

此代码在分配新 ProfileBtnFragment 的行之前有一个无条件返回语句。所以第二行是无法访问的。

关于java - 在 fragment 内部实例化 fragment 类的实例时无法到达的语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33381505/

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