修改图标
在AndroidManifest.xml文件中添加如下代码:
android:icon="@drawable/ic_launcher"
修改名称
同样
android:label="@string/app_name"
去除系统自带的标题栏
同样
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
如果没作用,使你的Acitvity继承Activity类或AppCompatActivity类
方法二:
Activity代码中加入
this.getSupportActionBar().hide();
设置标题栏为白色透明并去除标题栏
调用下面方法:
protected void setStatusBar() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
getWindow().setStatusBarColor(getResources().getColor(R.color.white));//设置状态栏颜色
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);//实现状态栏图标和文字颜色为暗色
}
this.getSupportActionBar().hide();//去除标题栏
}
布局控件中添加:确保布局不会被状态栏遮盖
android:fitsSystemWindows="true"