首先設(shè)置狀態(tài)欄透明
// 在activity的onCreate中添加
getWindow().setStatusBarColor(Color.TRANSPARENT);
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
布局xml文件扶檐,設(shè)置圖片為背景
<?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>
開(kāi)始是直接設(shè)置圖片為背景哄芜,發(fā)現(xiàn)失真(android:background = "@mipmap/login_back")
解決失真問(wèn)題患朱,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>