0

我正在尝试从互联网加载图像并将其放入 中ImageView,但我想使用屏幕宽度作为图像的宽度并保持纵横比。我已经在 stackoverflow 上尝试了所有解决方案,但它没有帮助。我想是因为我后来从互联网上加载图像并将其放入ImageView.

这是xml文件。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingBottom="0dp"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="0dp"
    tools:context=".ViewPhoto"
    android:background="@color/darkgrey"
    android:id="@+id/layout"
    >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="5dp"
        android:id="@+id/title" 
        android:background="@color/Black"
        android:typeface="sans"
        android:textColor="@color/White"
        />

    <ImageView 
        ??

        />

     <ListView
        android:id="@+id/comments"
        android:layout_below="@+id/photo"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:divider="#b5b5b5"
        android:dividerHeight="2dp"               
        />

</RelativeLayout>
4

2 回答 2

1
   <ImageView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scaleType="centerCrop"
        android:layout_below="@id/title"
    />

以这种方式尝试

于 2013-04-24T10:19:24.443 回答
0

尝试android:scaleType="centerCrop"在您的ImageView.

于 2013-04-24T10:21:31.653 回答