Android Action Bar: Can I replace a custom Title in appcompat v7

后端 未结 3 1740
逝去的感伤
逝去的感伤 2021-01-21 04:05

I want to add a custom action title on the left of the actin bar, replacing with the default title just like in the below image the default image is shown

3条回答
  •  我在风中等你
    2021-01-21 04:11

    You need to change the logo and the title in action bar.

    You can use

    getActivity().getActionBar().setTitle("your title");
    

    and

    getActivity().getActionBar().setLogo(your draw id);
    

提交回复
热议问题