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