Android:xml图像缩放不足以增加图像大小

时间:2013-07-09 00:29:03

标签: android xml imageview scale

我正在开发一个带有自定义对话框的应用。在该对话框的内部,我在代码中设置了一个图像,具体取决于单击列表视图中的哪个项目。对话框中的所有内容都有效。图像与按钮和文本一起显示。然而,我使用的图像仍然比我想要的要小得多。我尝试按照this教程进行操作,但它不会将图像缩放到某个点。它会缩小它们,但不会。我尝试了各种方法来解决这个问题,包括不同的android:scaleType="",但无济于事。任何帮助将不胜感激。我想避免单独设置大小,因为我有超过400个图像,我希望它们设置一次并在xml中完成。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content">

<ImageView android:id="@+id/ImageView01"
 android:contentDescription="@string/desc"
 android:saveEnabled="true"
 android:adjustViewBounds="true"
 android:scaleType="fitXY"
 android:maxWidth="375dp"  
 android:maxHeight="375dp"
 android:layout_width="wrap_content" android:layout_height="wrap_content"
 android:layout_centerHorizontal="true" />

 <ScrollView android:id="@+id/ScrollView01"
 android:layout_width="wrap_content" android:layout_below="@+id/ImageView01"
 android:layout_height="wrap_content">

 <TextView android:id="@+id/TextView01"
 android:layout_width="wrap_content" android:layout_height="wrap_content"
 android:paddingLeft="5dp" />

 </ScrollView>

 <Button
 android:id="@+id/Button01"
 android:layout_width="150dp"
 android:layout_height="50dp"
 android:layout_alignParentRight="true"
 android:layout_below="@+id/ScrollView01"
 android:background="@drawable/border"
 android:text="@string/cancel"
 android:textColor="#ffffff" />

 <Button
 android:id="@+id/Button02"
 android:layout_width="150dp"
 android:layout_height="50dp"
 android:layout_below="@+id/ScrollView01"
 android:background="@drawable/border"
 android:text="@string/copy"
 android:textColor="#ffffff" />

 </RelativeLayout>

1 个答案:

答案 0 :(得分:1)

将您的图片放入/res/drawable-nodpi文件夹(或相应地更改代码并将其放在assets/文件夹中)。

从其他drawable/文件夹中删除这些图片。告诉我们他们的尺寸。在不同方向的不同屏幕上测试它们。由于这些图像将占据屏幕的整个宽度,您可能必须针对不同尺寸的存储桶定制您的布局,但我怀疑您需要为不同的密度存储桶执行此操作。