当我的应用程序的方向更改时,操作栏中的标题会从导航抽屉中选择的片段的标题更改为应用程序的标题。
导航抽屉示例应用程序在方向更改时保留其标题,因为它的片段是主要活动的子类,并且具有这行代码
getActivity().setTitle(planet);
现在我有点新手,所以我不知道如何保留标题并实现代码,你们能帮忙吗?
以防万一你们想看,这里是 PlanetFragment 的子类
public static class PlanetFragment extends Fragment {
public static final String ARG_PLANET_NUMBER = "planet_number";
public PlanetFragment() {
// Empty constructor required for fragment subclasses
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_planet, container, false);
int i = getArguments().getInt(ARG_PLANET_NUMBER);
String planet = getResources().getStringArray(R.array.planets_array)[i];
int imageId = getResources().getIdentifier(planet.toLowerCase(Locale.getDefault()),
"drawable", getActivity().getPackageName());
((ImageView) rootView.findViewById(R.id.image)).setImageResource(imageId);
getActivity().setTitle(planet);
return rootView;
}
}