拟合图像到背景

时间:2013-02-08 03:18:18

标签: java android background

我想使用小于屏幕宽度但高度大于屏幕的图像。我正在考虑使用滚动视图,可以使用整个图像,但拟合会改变图片的原始比例。如何调整宽度并以相同的比例增加高度?这是代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:background="@drawable/tutorial"
  > 
  <ScrollView
    android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <ImageView
    android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:scaleType="fitXY"
  android:src="@drawable/tutorial">
  </ImageView>
  </ScrollView>   
</LinearLayout>

2 个答案:

答案 0 :(得分:1)

  

你不要使用 fill_parent 你想要使用 match_parent

     

<ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:backround="@drawable/tutorial"/>

答案 1 :(得分:0)

android:scaleType="CENTER_INSIDE"中使用Imageview

了解更多详情 read more about CENTER_INSIDE here