图像不应该丢失质量并在图像周围添加空白区域

时间:2011-09-15 05:53:58

标签: android

大家好我有一个尺寸为600 * 420的位图,我需要发布尺寸为900 * 900的图像..所以图像被拉伸。但我不希望它被拉伸我需要添加图像白色空间,保存质量。

1 个答案:

答案 0 :(得分:0)

我认为这会对你有帮助::

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="fill_parent"
    android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"
    android:gravity="center" android:orientation="horizontal">

    <RelativeLayout 
        android:layout_width="420dp" android:layout_height="600dp"
        xmlns:android="http://schemas.android.com/apk/res/android"
        >
            <ImageView
                       android:layout_height="fill_parent "
                       android:layout_width="fill_parent "
                       android:layout_marginTop="0dp"
                       android:src="@drawable/Image"
                ></ImageView>
  </RelativeLayout>
</LinearLayout>