0
我試過添加和減少很多東西,但每當啓動屏幕啓動時,圖像中總是有一個圓角或一種高程。我的初始屏幕圖像總是會有一些圓角的白色邊角
<?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>
由於您使用的是來自mipmap的圖像,而且mipmap僅適用於啓動器圖標。大多數情況啓動器圖標具有漸變邊框/陰影。我認爲你的圖像有這個漸變邊框。首先檢查你的圖像。 – FAT
沒有圖像是一個沒有任何邊框的簡單PNG圖像。 如果mipamp僅適用於圖標,那麼我應該在哪裏放置啓動畫面的圖像? –
在可繪製的文件夾中。路徑:/res/drawable/ath_splash.png – FAT