ImageView - 对齐左边 - 比例高度 - 裁剪宽度,没有人知道吗?

时间:2012-11-29 17:25:21

标签: android android-layout android-widget

我试图在ImageView中获取图像以缩放以填充高度,保持与左侧对齐,并相应地裁剪宽度以保持宽高比。

Scaletype - centercrop有点这样做,但是对齐图像中心(正如名称所示),但我希望图像对齐到左边,所以我没有得到图像左侧的任何裁剪。

这是我的电流布局:

<ScrollView android:id="@+id/MainScrollView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:background="#000000"
android:fillViewport="true">

<LinearLayout
android:id="@+id/lineLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" 
android:orientation="vertical">

<RelativeLayout
    android:id="@+id/RelativeLayout1"
    android:layout_width="fill_parent" android:layout_height="93dp">
    <ImageView 
      android:id="@+id/imageView1" 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      android:src="@drawable/top"
      android:layout_gravity="right"
      android:scaleType="centerCrop" />

有什么建议吗?

感谢。

0 个答案:

没有答案