Why Android is truncating my ActionBar title?

前端 未结 13 2078
Happy的楠姐
Happy的楠姐 2021-02-13 10:28

In my app, I change the title in the ActionBar from each fragment displayed. When I first start my apps, I got a list of requests, so my title is \"My requests (20)\".

T

13条回答
  •  -上瘾入骨i
    2021-02-13 11:22

    I guess this problem is solved by refreshing action bar UI.

    So I had solved with below codes.

    ActionBar actionBar = getActivity().getActionBar();
    actionBar.setTitle(title);
    
    // for refreshing UI
    actionBar.setDisplayHomeAsUpEnabled(false);
    actionBar.setDisplayHomeAsUpEnabled(true);
    

提交回复
热议问题