工具栏中的标题问题

时间:2019-01-28 00:53:59

标签: android-toolbar titlebar

我的工具栏标题是使用以下代码从片段内的数据库中获取的:

 JSONObject response = new JSONObject(responseObj.body().string());
                        if (response.getBoolean("success")) {
                            responseData = response.getJSONObject("data");
                            HomeActivity.checkLoading = false;

                            getActivity().setTitle(response.getJSONObject("data").getString("page_title"));

现在,当我在切换片段时使用了隐藏片段时,标题将保持不变,而我要返回。

我如何只刷新标题并将其从数据库中取回,而无需刷新整个片段?

谢谢

0 个答案:

没有答案