Android:以编程方式删除标题/通知栏

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android:以编程方式删除标题/通知栏相关的知识,希望对你有一定的参考价值。

There are roughly three ways to do this: programatically, through stylesheets, or through the Anroid manifest.
  1. public class MainActivity extends Activity {
  2. /** Called when the activity is first created. */
  3. @Override
  4. public void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.main);
  7.  
  8. //Remove title bar
  9. this.requestWindowFeature(Window.FEATURE_NO_TITLE);
  10.  
  11. //Remove notification bar
  12. this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
  13.  
  14. }
  15. }

以上是关于Android:以编程方式删除标题/通知栏的主要内容,如果未能解决你的问题,请参考以下文章

Android:是不是可以以编程方式删除系统管理的通知?

Android:以编程方式在片段中添加多个 RecyclerView

如何在android中以编程方式在片段之间导航?

以编程方式将片段添加到android中的框架布局

以编程方式从通知托盘中删除 UILocalNotification

在 Android 上以编程方式关闭应用程序的通知