gpt4 book ai didi

Android 窗口背景风景以低分辨率显示

转载 作者:行者123 更新时间:2023-11-29 18:21:56 26 4
gpt4 key购买 nike

设备:三星 Galaxy Tab

我遵循了这个指南:http://developer.android.com/resources/articles/window-bg-speed.html

我将背景图像放在主题中以提高性能,并且我在纵向方向上工作得非常好。

主题:

<resources>
<style name="Theme.xxxx" parent="android:Theme">
<item name="android:windowBackground">@drawable/background_xxxx</item>
<item name="android:windowNoTitle">true</item>
</style>
</resources>

我将 Manifest 文件中的主题附加到 Activity 中。

    <activity android:name=".main" 
android:label="@string/app_name"
android:theme="@style/Theme.xxxx">

在 drawable 目录中,我创建了文件 background_xxxx.xml:

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/background_image"
android:tileMode="disabled" />

在 drawable-hdpi 目录中,我将我的图像 600x1024 像素称为 background_image.png

在 drawable-large-land 目录中,我将名为 background_image.png 的 1024x600 像素图像放入横向

当我以纵向启动我的应用程序时,我会看到它的背景图像是高清的,但如果我旋转它,我会看到放在 drawable-large-land 目录中的图像是低分辨率的。

我必须将风景图像放在哪里才能以高分辨率查看它?

谢谢。

最佳答案

你的错很小。在你的问题中看到这个:

In drawable-large-land directory i put my image 1024x600 px called background_image.png for the landscape orientation

你必须使用drawable-land-hdpi 文件夹来放置图像

关于Android 窗口背景风景以低分辨率显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4897824/

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