本文介绍了在Android的寻呼机隐藏应用程序标题栏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能告诉如何隐藏在寻呼机片段应用程序标题栏。

Can anyone tell how to hide the app title bar in Pager fragment.

推荐答案

这应该是足够的:

ActionBar bar = getActionBar(); // you might need to use getSupportActionBar() based on your project setup
bar.setDisplayShowTitleEnabled(false);
bar.setDisplayShowHomeEnabled(false);

这篇关于在Android的寻呼机隐藏应用程序标题栏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 13:36