NetworkImageView占据全屏宽度

时间:2015-08-26 07:20:33

标签: android android-layout android-volley

我正在使用com.android.volley.toolbox.NetworkImageView。 图像来自网址。 我想显示图像,使其宽度占据屏幕的整个宽度而不是高度,因为在图像下面有一个标题是Textview。

这是活动的xml

<?xml version="1.0" encoding="utf-8"?>
<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:background="@color/black"
tools:context=".MainActivity" >

<android.support.v4.view.ViewPager
    android:id="@+id/view_pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
</RelativeLayout>

这是项目xml。

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

<com.android.volley.toolbox.NetworkImageView
    android:id="@+id/photo_image"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="1dp"
    android:src="@drawable/button_register" />

<TextView
    android:id="@+id/caption"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/photo_image"
    android:layout_marginLeft="15dp"
    android:text="Check"
    android:textColor="@color/white" />
</RelativeLayout>

从后端开始,图像尺寸为300 X 200像素。 如何设置imageview以便它可以占据屏幕的整个宽度。 有人可以帮忙吗?

1 个答案:

答案 0 :(得分:3)

NetworkImageView扩展ImageView,因此您应该能够使用与ImageView一起使用的所有内容。

因此,如果您希望图像占据整个宽度并调整其高度以保持其纵横比(至少是我理解您想要做的那样),请使用adjustViewBounds属性

您的xml将如下所示:

<com.android.volley.toolbox.NetworkImageView
    android:id="@+id/photo_image"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="1dp"
    android:src="@drawable/button_register"
    <!-- add adjustViewBounds -->
    android:adjustViewBounds="true" />