手动设置大小时,ImageView不会在父布局中居中

时间:2014-02-21 02:35:20

标签: android android-layout android-imageview android-xml

我的布局有两个组件,一个背景图像和一个“图标”图像,该图标应该在布局的中心显示一个图像视图,背景占据整个屏幕。当我将图标的高度和宽度设置为0dp以优化布局时,请手动设置图像将显示的代码中的高度/宽度,但位于布局的左上角。几乎就像它忽略了父属性

中的中心
<?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" >

    <ImageView
        android:id="@+id/ivBackground"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="centerCrop" />



    <TextView
        android:id="@+id/tvUsername"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ivIcon"
        android:layout_centerHorizontal="true"
        android:fontFamily="sans-serif-light"
        android:shadowColor="#b3000000"
        android:shadowDx="3"
        android:shadowDy="3"
        android:shadowRadius="3"
        android:textAllCaps="false"
        android:textColor="@color/white"
        android:textSize="25sp" />

    <ImageView
        android:id="@+id/ivIcon"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_centerInParent="true"
        android:adjustViewBounds="true" />



 </RelativeLayout>

这个布局来自listview项目,所以稍后我做了一些测量我会设置高度/宽度

viewHolder.ivIcon.setLayoutParams(new RelativeLayout.LayoutParams(iconWidth, iconWidth));

所以图像显示但是在左上方,我觉得我错过了一些明显的东西

1 个答案:

答案 0 :(得分:1)

我认为可能发生的事情是当您设置布局参数时,您将覆盖前一个中心在父母中的参数。你应该试试这个:

RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(iconWidth, iconWidth);
params.addRule(RelativeLayout.LayoutParams.CENTER_IN_PARENT);
viewHolder.ivIcon.setLayoutParams(params);