我想删除此启动画面中的白色底边框。我相对于线性更改了许多布局,但没有任何改变。任何人都可以帮助我如何删除这个白色边框:
我的splash_screen.xml: -
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<View android:layout_width="match_parent"
android:layout_height="match_parent" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/a"
android:adjustViewBounds="false"
android:scaleType="centerCrop"
/> </RelativeLayout>
答案 0 :(得分:1)
window
答案 1 :(得分:1)
试试这个,
<强> activity_splash.xml 强>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splash_screen" >
</LinearLayout>