大型设备中的图像尺寸

时间:2011-12-23 20:22:52

标签: android image resize relativelayout

我在我的应用程序中有这个图像,当我在我的Droid X和Droid仿生和其他较小的设备上测试它时,它看起来很好。但是当我在Android平板电脑上测试时,图像被拉长了。我只是想知道是否有正确的方法来解决这个问题。

注意:我已经尝试将图像的实际尺寸添加到200 dp 300 dp。但它仍然无效

这是我的代码

<RelativeLayout 
         android:id="@+id/image"
         android:layout_alignParentTop="true"
         android:orientation="vertical" 
         android:layout_width="wrap_content"
         android:layout_height="wrap_content">

    <ImageView
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:background="@drawable/kittens"/>        

    </RelativeLayout>

1 个答案:

答案 0 :(得分:0)

不要对ImageView使用wrap_content,而是使用dp,如:

<ImageView
         android:layout_width="200dp"
         android:layout_height="200dp"
         android:background="@drawable/kittens"/>