gpt4 book ai didi

java - 如何隐藏特定片段中的操作栏

转载 作者:搜寻专家 更新时间:2023-11-01 02:59:10 25 4
gpt4 key购买 nike

我有片段 A 、 B 、 C 、 D 。我想在片段 D 中隐藏操作栏。

我试过 getActivity().getActionBar().hide(); 但它没有用。

public class Profile extends Fragment {

public Profile() {
// Required empty public constructor
}

public static Profile newInstance(int instance) {
Bundle args = new Bundle();
args.putInt("argsInstance", instance);
Profile profile = new Profile();
profile.setArguments(args);
return profile;
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {

getActivity().getActionBar().hide();


// Inflate the layout for this fragment
View profile = inflater.inflate(R.layout.fragment_profile, container, false);

return profile;


}

}

最佳答案

我有同样的问题,正在寻找答案。明白了!

在这里。希望对您有所帮助:

// Hide the status bar.
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
view.setSystemUiVisibility(uiOptions);
// Remember that you should never show the action bar if the
// status bar is hidden, so hide that too if necessary.
((AppCompatActivity)getActivity()).getSupportActionBar().hide();

关于java - 如何隐藏特定片段中的操作栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41193934/

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