我的布局中的图像放大但不应该。如何防止图像缩放?

时间:2010-10-25 14:37:43

标签: android image scaling

我有一个RelativeLayout,我有两张图片。问题是:扩大规模。它们显示的方式比应该的大。这是我的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallery_batch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/batch_background">
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/icon_success"
    android:id="@+id/view_batch_icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true"
    android:padding="5dp"
    android:layout_gravity="center_vertical"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/text_bereits_geladen"
    android:layout_toRightOf="@id/view_batch_icon"
    android:layout_centerVertical="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="5dp"/>

有谁能告诉我这里我做错了什么? 谢谢!

1 个答案:

答案 0 :(得分:0)

布局看起来很好。

你在哪里存储这些图像?例如,如果您将它们放在具有所需大小的drawable-ldpi文件夹中,然后在运行mdpi设置或hdpi设置的模拟器上进行测试,则图像将更大,您必须根据您的设计正确决定存储它们的位置

这些标签不需要xml名称空间,你可以不用它来编写它们,只需要xml文件的主标签。

<ImageView xmlns:android="http://schemas.android.com/apk/res/android"