gpt4 book ai didi

android - 为什么我已经为每个可绘制文件夹调整了位图的大小,但 Android 可绘制对象仍然存在问题?

转载 作者:太空狗 更新时间:2023-10-29 12:43:14 24 4
gpt4 key购买 nike

在尝试支持多种屏幕尺寸时,我使用 Inkscape 创建了一些图像,并以不同的 dp 单位将它们导出到可绘制文件夹中。我开始为我的平板电脑创建图像,我在我的华硕变压器上测试了它,一切看起来都很好。所以我把我的平板电脑图像放在 drawable-xhdpi 中,每个图像都是 160dp。因此,对于这些图像中的每一个,我分别为 drawable-hdpi、drawable-mdpi 和 drawable-ldpi 文件夹导出了 120dp、80dp 和 60dp 的新图像(基于 Android 建议的 8:6:4:3 缩放比例)。

但是,当我在我的 galaxy s3 和 LG Ally 上进行测试时,图像显得太大,无法完全显示在屏幕上。我包括了<support-screen/>在我的 list 中明确“支持”所有屏幕。我将 anyDensity 设置为 true。我在 Eclipse 中刷新了我的项目文件夹,还做了一个干净的构建。

我正在使用带有 ImageView 和一些 ImageButton 的 LinearLayout:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
tools:context=".StarsMenu" >

<ImageView
android:id="@+id/img_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/title" />

<ImageButton
android:id="@+id/img_play_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@drawable/menu_play_imgs"/>

<ImageButton
android:id="@+id/img_practice_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@drawable/menu_pract_imgs"/>

<ImageButton
android:id="@+id/img_about_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@drawable/menu_about_imgs" />

这是 list :

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vpbailey.RememberTheStars"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />

<supports-screens
android:anyDensity="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.vpbailey.RememberTheStars.StarsMenu"
android:label="@string/app_name"
android:theme="@style/FullscreenTheme"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

我不知道如何从这里开始。我做错了什么对我来说并不明显,但我觉得我错过了一些非常简单的东西,因为这是我的第一个 Android 应用程序。提前致谢:)

最佳答案

Galaxy S3 密度为 xhdpi。密度比是这样的:

mdpi:hdpi:xhdpi:xxhdpi:xxxhdpi: 1x:1.5x:2x:3x:4x

xxhdpi 用于 Galaxy s4 等手机。

xxxhdpi 用于 Galaxy x5 等手机。

对于 samsung Galaxy S3,您需要创建文件夹 drawable-sw360dp 并相应地保存图像。

下面的链接会给你更多的想法:

http://developer.android.com/design/style/iconography.html

希望对你有帮助

关于android - 为什么我已经为每个可绘制文件夹调整了位图的大小,但 Android 可绘制对象仍然存在问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22188339/

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