<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#DCDCDC"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/rl"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp">
<RadioGroup
android:id="@+id/select"
android:layout_width="200dp"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:orientation="horizontal">
<RadioButton
android:id="@+id/dialUp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:background="@drawable/radiobutton_left_bg"
android:button="@null"
android:checked="true"
android:gravity="center"
android:text=" 拨号"
android:textColor="@drawable/text_select" />
<RadioButton
android:id="@+id/contacts"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:background="@drawable/radiobutton_right_bg"
android:button="@null"
android:gravity="center"
android:text=" 联系人"
android:textColor="@drawable/text_select" />
</RadioGroup>
</RelativeLayout>
<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="2px"
android:layout_below="@+id/rl"
android:background="#D3D3D3" />
<FrameLayout
android:id="@+id/franme_meun"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/view"
android:background="#FFFFFF" />
</RelativeLayout>
|