gpt4 book ai didi

android - 如何在全屏启动画面中去除图像周围的白色边框

转载 作者:行者123 更新时间:2023-11-29 21:45:39 32 4
gpt4 key购买 nike

我目前正在处理带有 ImageView 的闪屏。问题是当启动画面显示时,图像周围有一个白色边框。这样启动画面就会显示带有白色边框的图像。我想完全删除白色边框。有没有人知道这个的原因或任何建议?

这是我的 xml 代码:

<?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="wrap_content" >

<View android:layout_width="match_parent"
android:layout_height="match_parent" />

<ImageView android:id="@+id/ImageViewSplash"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:contentDescription="@string/splashImageContentDescription" />
</RelativeLayout>

最佳答案

我在用于初始页面的主题/样式中应用透明背景,这样我就不必扭曲显示的图像以适应设备的屏幕尺寸。这在使用包含透明背景的 PNG 文件时效果特别好。

这是我为这个“透明”主题使用的样式:

    <style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>

然后您将此主题应用到应用程序 list 中的启动 Activity ,如下所示:

    <activity
android:name="com.masseria.homework9.SplashActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:theme="@style/Theme.Transparent" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

关于android - 如何在全屏启动画面中去除图像周围的白色边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15929813/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com