仅显示图像视图的原始图像的一部分

时间:2014-04-04 18:37:19

标签: android android-layout

我正在使用列表视图,其中有一个图像,例如,图像是1920×1080,我只想显示与其所在布局高度相同的图像量。

所以我有一个verticl linearLayout,例如它的高度为100dp,所以我希望我在该图像视图中使用的图像显示100 dp将转换到图像上的内容?如果这是有道理的。我想保持相同的分辨率,我不想缩小它或任何东西,只显示图像的一部分。

这是现在的xml:

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_launcher" />

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"

            android:scaleType="fitStart"
            android:adjustViewBounds="true"
            android:src="@drawable/example"
             />

    </LinearLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

试试这个:

android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:scaleType="center"

Documentation to "center"

Documentation to "layout_weight"