【发布时间】:2010-07-07 21:33:05
【问题描述】:
我正在尝试在网格上方和下方显示图像。这是初始屏幕,顶部有徽标,4 个按钮作为网格视图,然后是底部图像。使用我当前的代码,底部图像根本不显示。另外我想将底部图像“底部框”粘贴到显示器的底部。
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:paddingTop="20dp"
android:src="@drawable/stuffbox"
android:gravity="center"/>
<GridView
android:id="@+id/gridview"
android:paddingTop="10dp"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:columnWidth="40dp"
android:numColumns="2"
android:verticalSpacing="10dp"
android:horizontalSpacing="10dp"
android:stretchMode="columnWidth"
android:gravity="center"/>
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/bottomboxes"
android:paddingTop="20dp"
/>
</LinearLayout>
【问题讨论】: