Android将图像放在RelativeLayout的顶部和中心

时间:2012-04-18 12:40:48

标签: android android-imageview

我正在尝试将图像与我的相对布局顶部对齐,然后将图像水平对齐。这是我正在使用的代码:

<ImageView  
        android:id="@+id/collection_image_background"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"  />

,但此代码无效。我的图像居中,但未在我的相对布局顶部对齐。我尝试使用android:scaleType="fitStart",但它实际上将图像左侧和顶部对齐。

所以我知道如何在需要的时候正确对齐图像?

P.S。我忘记提到我正在将图像设置为ImageView,如下所示:

    BitmapFactory.Options o2 = new BitmapFactory.Options();
    o2.inTempStorage = new byte[8*1024];

    ops = BitmapFactory.decodeStream(cis,null,o2);
    ImageView view = (ImageView) findViewById(R.id.collection_image_background);
    view.setImageBitmap(ops);

1 个答案:

答案 0 :(得分:19)

代码似乎是完美的,除了您分配的内容区域fill_parent占据整个视图并将显示为中心,因此只需按wrap_content

进行修改
  <ImageView  
            android:id="@+id/collection_image_background"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"  />