Android ImageView可以拉伸图像

时间:2015-03-15 11:57:12

标签: android imageview aspect-ratio stretch

我进行了搜索和搜索,似乎没有任何工作可以避免我的横幅拉伸。 我已经在drawabled文件夹中保存了多个横幅实例。图像的宽度为:

  • xxhdpi:1440px
  • xhdpi:960px
  • hdpi:720px
  • MDPI:480像素

当我在屏幕宽度为1080px(例如nexus 5)的设备上运行应用程序时,图像会被拉伸..

我正在使用的布局是垂直线性布局,顶部是imageview中的横幅。 我已经尝试更改scaleType,layout_width / height和adjustViewBounds属性,但似乎没有任何工作..

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:baselineAligned="false"
    android:background="@drawable/smos_bg"
    android:padding="0dp">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scaleType="centerCrop"
        android:adjustViewBounds="true"
        android:background="@drawable/top" />

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none"/>
</LinearLayout>

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

试试这个:

 <ImageView
    android:id="@+id/imageId"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:src="@drawable/top" >       
</ImageView>