android设置NoTITLe

【android设置NoTITLe】花门楼前见秋草,岂能贫贱相看老。这篇文章主要讲述android设置NoTITLe相关的知识,希望能为你提供帮助。

  • 在Activity里面设置
      • @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(xxx); }

  • 记住一定在setContentView之前

    推荐阅读