如何使图库项目顶部对齐?

时间:2012-02-24 14:25:56

标签: android gallery

我有Gallery小部件,显示50dp高的布局。当用户点击图库项目时,该布局将增长到100dp高。我已经有了这种不断扩展的触摸行为,可以正常工作。但是,问题是图库将项目呈现为水平和垂直居中。

我想要的是让它水平居中,顶部对齐。因此,当用户点击某个项目时,它会打开“向下滚动”。

2 个答案:

答案 0 :(得分:1)

<Gallery xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/gallery"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="top"
/>

答案 1 :(得分:0)

尝试项目布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent">

  <ImageView

           ..........
           android:layout_centerHorizontal="true"
           android:layout_alignParentTop="true"
           ..........
        />
</RelativeLayout>