繁体   English   中英

如何在Android的初始屏幕中删除白色底边框

[英]How to remove white bottom border in splash screen in android

我想在此初始屏幕中删除白色底边框。 我更改了许多相对于线性的布局,但没有任何变化。任何人都可以帮助我如何删除此白色边框:

我的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>

我的图片:- 在此处输入图片说明

<?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"
android:background="#000000">

<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:background="#000000"
    android:adjustViewBounds="false"
    android:scaleType="centerCrop"
    />   </RelativeLayout>

尝试这个,

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>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM