android中心图片在标题中,但填写整个listview

时间:2015-08-07 20:52:59

标签: android listview

我有一个列表视图,在运行时我使用header_layout添加一个标题,如下所示。

<RelativeLayout
   android:id="@+id/alertslayoutheader"
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="wrap_content">

<ImageView
    android:id="@+id/imgLogo"
    android:layout_width="wrap_content"
    android:layout_height="150dp"
    android:layout_gravity="center"
    android:scaleType="centerCrop"
    android:src="@drawable/dash_vector_alpha2"/>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:orientation="vertical"
    android:gravity="center_vertical"
    android:padding="40dp"
    >
    <TextView
        android:id="@+id/text360"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:fontFamily="sans-serif-normal"
        android:gravity="center_horizontal"
        android:singleLine="false"
        android:text=" 360°"
        android:textColor="#ffffff"
        android:textSize="38dp"
        android:textStyle="normal"
        />
    </LinearLayout>

使用ImageView,我将图片放在标题的中心位置。我能够做到这一点。但是(正如我所预料的那样)图像会在标题下方切断,并且不会在下面的行中显示底部部分。

我希望它不会被下面的行切断。我希望标题图像填充下面的其余行。标题中的图像也需要滚动。

使用填充+将其设置为整个列表视图的背景并不会因分辨率的变化而有所帮助。

感谢任何帮助。

谢谢

0 个答案:

没有答案