0

我正在阅读图库视图教程:http: //developer.android.com/resources/tutorials/views/hello-gallery.html。无论如何我可以将图像放置在底部而不是顶部?换句话说,我想在图像上方显示 toast 消息。

4

1 回答 1

1

修改你的 res/layout/main.xml 之类的

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<Gallery
    android:id="@+id/gallery"
    android:layout_alignParentBottom="true"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />
</RelativeLayout>

此外,您还可以设置Toast位置toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);

于 2012-04-11T06:35:58.180 回答