• 2022-06-19
    以下方法那个不能实现不显示android标题栏
    A: 在Activity的Oncreate方法中this.requestWindowFeature(Window.FEATURE_NO_TITLE);
    B: 设置布局Layout上移一定单位dp
    C: 在manifest设置Activity的节点 android:theme="@android:style/Theme.NoTitleBar"
    D: 在style中定义 true 后在manifest中引用