我开始使用android,这是我的应用程序。我在底部插入了一个收音机组来构建一个带有四个按钮的半透明条,我问你的是,我如何将它们居中?
这是我的布局xml:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map_relative_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
tools:context=".MainActivity" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.91" />
<RadioGroup
android:id="@+id/radio_group_list_selector"
android:layout_width="match_parent"
android:layout_height="48dp"
android:orientation="horizontal"
android:background="#80000000"
android:padding="4dp"
android:layout_gravity="bottom">
<ImageButton
android:id="@+id/buttonmuseum"
android:layout_width="40dp"
android:layout_height="40dp"
android:text=""
android:layout_gravity="center"
android:background="@drawable/museum"/>
<View
android:id="@+id/VerticalLine"
android:layout_width="1dip"
android:layout_height="match_parent"
android:background="#aaa" />
<ImageButton
android:id="@+id/buttonhotel"
android:layout_width="40dp"
android:layout_height="40dp"
android:text=""
android:layout_gravity="center"
android:background="@drawable/hotel" />
<View
android:id="@+id/VerticalLine1"
android:layout_width="1dip"
android:layout_height="match_parent"
android:background="#aaa" />
<ImageButton
android:id="@+id/buttonrestaurant"
android:layout_width="40dp"
android:layout_height="40dp"
android:text=""
android:layout_gravity="center"
android:background="@drawable/restaurant" />
<View
android:id="@+id/VerticalLine2"
android:layout_width="1dip"
android:layout_height="match_parent"
android:background="#aaa" />
<ImageButton
android:id="@+id/buttonsouvenir"
android:layout_width="40dp"
android:layout_height="40dp"
android:text=""
android:layout_gravity="center"
android:background="@drawable/souvenir"/>
</RadioGroup>
</FrameLayout>
接受任何建议。非常感谢你。
P.S。:我设计了带涂料的红色方块,以便更好地展示您感兴趣的区域。
答案 0 :(得分:2)
尝试在radiogroup标签中添加以下内容
android:gravity="center"