我正在阅读图库视图教程:http://developer.android.com/resources/tutorials/views/hello-gallery.html。无论如何我可以将图像放在底部而不是顶部?换句话说,我想在图像上方显示祝词信息。
答案 0 :(得分: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);