我尝试添加和减少很多东西但是每当我的启动画面启动时,图像中总会有一个圆角或一种高程。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#3c3734"
tools:context="com.example.akshay.athleticgo.SplashScreen">
<ImageView
android:id="@+id/splash_logo"
android:adjustViewBounds="true"
android:elevation="0dp"
android:fitsSystemWindows="true"
android:background="#3c3734"
android:src="@mipmap/ath_splash"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
</FrameLayout>
这是我使用
的风格 <style name="Theme.Transparent" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowIsTranslucent">true</item>
</style>
答案 0 :(得分:1)
当您使用mipmap
文件夹中的图片时,mipmap
仅适用于launcher
图标。大多数情况下,启动器图标具有渐变border/shadow
。我认为您的图片有gradient
边框。首先检查你的图像。
最佳做法是将image
个资源文件放入drawable
文件夹,然后根据需要使用(android:src="@drawable/ath_splash"
)views
。