首先设置状态栏透明
// 在activity的onCreate中添加
getWindow().setStatusBarColor(Color.TRANSPARENT);
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
布局xml文件,设置图片为背景
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
<!--android:background = "@mipmap/login_back"-->
android:background="@drawable/image_size_bitmap"
android:fitsSystemWindows="true">
</RelativeLayout>
开始是直接设置图片为背景,发现失真(android:background = "@mipmap/login_back")
解决失真问题,drawable文件下
// image_size_bitmap.xml 文件
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/login_back"
android:tileMode="disabled"
android:gravity="top|fill">
</bitmap>