好的,这是一个令我困惑的问题,我真的希望你能帮助我解决这个问题。我正在使用 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);
}