【发布时间】:2014-05-03 17:39:21
【问题描述】:
我想在GridView 中显示ImageButtons。目前我正在使用RelativeLayout。
这是我的 XML 代码:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/RelativeLayout01"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.easy.convert.MainActivity" >
<ImageButton
android:id="@+id/btnbitsbytes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp"
android:background="#00000000"
android:gravity="center"
android:src="@drawable/btnbitsbytes" />
<ImageButton
android:id="@+id/btnmassweight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/btnbitsbytes"
android:layout_below="@+id/btnbitsbytes"
android:layout_marginTop="14dp"
android:background="#00000000"
android:src="@drawable/btnmassweight" />
<ImageButton
android:id="@+id/ButtonConvert"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/btnmassweight"
android:layout_below="@+id/btnmassweight"
android:layout_marginTop="14dp"
android:background="#00000000"
android:src="@drawable/btnlength" />
<ImageButton
android:id="@+id/imageButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/ButtonConvert"
android:layout_below="@+id/ButtonConvert"
android:layout_marginTop="14dp"
android:background="#00000000"
android:src="@drawable/btntemperature" />
<ImageButton
android:id="@+id/imageButton4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageButton3"
android:layout_below="@+id/imageButton3"
android:layout_marginTop="15dp"
android:background="#00000000"
android:src="@drawable/btndistance" />
<ImageButton
android:id="@+id/imageButton5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageButton4"
android:layout_centerHorizontal="true"
android:layout_marginTop="22dp"
android:background="#00000000"
android:src="@drawable/btnaboutus" />
</RelativeLayout>
</ScrollView>
我不知道如何使用 GridView 或任何其他布局,但我希望我的布局看起来像这样:
【问题讨论】:
标签: android xml gridview layout imagebutton