0

好的,这是一个令我困惑的问题,我真的希望你能帮助我解决这个问题。我正在使用 HTC amaze 和 Galaxy S2 测试我的应用程序(我知道它们都是高密度的)并且都在 3.7-4.3 屏幕范围内

问题是同一张图像在两个屏幕上的大小看起来不同。在 HTC 惊奇它是小得多。我有 3 个不同大小的可绘制文件夹(无论如何我都应该在这里需要,因为两个设备的密度相同)

我在 DisplayMatrics 上做了一些调试,发现 HTC 惊奇如下:

density 1.5
desnityDPI 240
Height pixels:540
Width pixels:960
xdpi 258
ydpi 256

但是,对于 S2 星系,显示指标是:

density 1.5
desnityDPI 240
Height pixels:480
Width pixels:800
xdpi 160
ydpi 160

那么有人可以向我解释为什么两种设备上的图像尺寸不同。HTC 惊奇图像比 S2 小得多?谢谢

编辑:用于获取 DP 信息的代码是

DisplayMetrics mt =getApplicationContext().getResources().getDisplayMetrics();

编辑:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mainLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/carpet"
    android:clipChildren="false"
    android:clipToPadding="false"
    android:keepScreenOn="true" >
    <RelativeLayout
        android:id="@+id/relativeLayoutBottom"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:clipChildren="false"
        android:clipToPadding="false" >

        <ImageView
            android:id="@+id/ivBottom1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <ImageView
            android:id="@+id/ivBottom2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp" />

        <ImageView
            android:id="@+id/ivBottom3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="40dp" />
    </RelativeLayout>

   </RelativeLayout>



private void initialize(ArrayList<CardSuitNumber> cards) {

    RelativeLayout flBottom = (RelativeLayout) findViewById(R.id.relativeLayoutBottom);
    player1.clearAll();

    for(int i=0; i<GameConstants.MAXRANKS;i++){
        player1.addCard((ImageView)flBottom.getChildAt(i));


    }
}


public void addCard(ImageView im){


        Drawable drawable = card.getCardSuitNumber().getDrawable(mActivity);
        im.setImageDrawable(drawable);
        imsetVisibility(View.VISIBLE);


}
4

4 回答 4

2

答案就在你面前的数字中。

来源http://www.androidauthority.com/htc-amaze-4g-vs-samsung-galaxy-s-ii ​​-t-mobile-27110/

屏幕尺寸方面,三星 Galaxy S2 的屏幕略大,显示屏为 4.52 英寸。另一方面,HTC Amaze 4G 的屏幕尺寸与 Galaxy S2 的国际版本相似——4.3 英寸。

HTC Amaze 具有更高的分辨率和更小的物理屏幕。这会导致更高的像素密度——这意味着更小的物理像素,因为需要将更多的像素塞进更紧凑的地方。

因此,例如 240x160 的图像在 Amaze 上会显得更小。

报告的 S2 的 DPI 值显然是错误的。根据给定的指标,'800/160 = 5 英寸长边,480/160 = 3 英寸短边。这将给出 sqrt (5 * 5 + 3*3 ) = 5,8 英寸的屏幕尺寸。

The amaze 的 DPI 值是正确的。正如我们所看到的,如果我们做一个简单的毕达哥拉斯。平方 (960/258^2 + 540/256^2) = 4,27"

作为一名开发人员,当我从我的测试设备 HTC 感觉和 S2 移动时,我会遇到同样的事情。

于 2012-08-03T12:24:46.540 回答
0

HTC 上的 xdpi 和 ydpi 非常高,这就是图像较小的原因。

我记得有一个错误,报告的 xdpi 和 ydpi 完全错误,老实说,它们看起来是错误的。

于 2012-08-03T10:04:39.110 回答
0

这是否与此问题有关:https ://groups.google.com/forum/?fromgroups#!topic/android-developers/g56jV0Hora0

于 2012-08-03T10:18:13.557 回答
0

我不确定,但我根据您的问题了解到的一种解决方案是,您必须根据设备屏幕分辨率进行布局。

一样,

Galaxy SII 支持 layout-normal-hdpi

一样,

也许 HTC amaze 支持 layout-large Screen。

因此,请尝试根据设备进行布局,它将解决您的问题。

希望它会帮助你。

与您的问题相同的其他细节在这里:android-layout-issue-for-htc-evo-3d

享受编码。. . . :)

于 2012-08-06T08:02:31.163 回答