xml文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_wei_xin"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="example.com.lianxi.WeiXin">
<RadioGroup
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:orientation="horizontal">
<RadioButton
android:textSize="18dp"
android:checked="true"
android:gravity="center"
android:drawableTop="@drawable/btn_weixin"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:button="@null"
android:text="微信" />
<RadioButton
android:textSize="18dp"
android:gravity="center"
android:drawableTop="@drawable/btn_weixin01"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:button="@null"
android:text="通讯录" />
<RadioButton
android:textSize="18dp"
android:gravity="center"
android:drawableTop="@drawable/btn_weixin02"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:button="@null"
android:text="发现" />
<RadioButton
android:textSize="18dp"
android:gravity="center"
android:drawableTop="@drawable/btn_weixin03"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:button="@null"
android:text="我" />
</RadioGroup>
</RelativeLayout>