<?xml version="1.0" encoding="utf-8"?> 
 | 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 | 
    android:layout_width="match_parent" 
 | 
    android:layout_height="match_parent" 
 | 
    android:background="#40000000" 
 | 
    android:gravity="center" 
 | 
    android:orientation="vertical"> 
 | 
  
 | 
    <LinearLayout 
 | 
        android:layout_width="match_parent" 
 | 
        android:layout_height="wrap_content" 
 | 
        android:layout_margin="@dimen/dialog_bg_margin" 
 | 
        android:background="@drawable/base_bg_dialog_top_stroke" 
 | 
        android:gravity="center" 
 | 
        android:orientation="vertical"> 
 | 
  
 | 
        <TextView 
 | 
            android:layout_width="300dp" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="20dp" 
 | 
            android:gravity="center" 
 | 
            android:text="选择域名卡类型" 
 | 
            android:textColor="@color/dialog_btn" 
 | 
            android:textSize="23sp" 
 | 
            android:textStyle="bold" /> 
 | 
  
 | 
        <View 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="2px" 
 | 
            android:layout_marginTop="20dp" 
 | 
            android:background="@color/line_bg" /> 
 | 
  
 | 
        <RadioGroup 
 | 
            android:id="@+id/radioLibrary" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content"> 
 | 
  
 | 
  
 | 
            <RadioButton 
 | 
                android:id="@+id/xinxiang" 
 | 
                android:layout_width="match_parent" 
 | 
                android:layout_height="wrap_content" 
 | 
                android:layout_marginLeft="50dp" 
 | 
                android:layout_marginTop="25dp" 
 | 
                android:layout_marginRight="50dp" 
 | 
                android:background="@drawable/radio_select" 
 | 
                android:button="@null" 
 | 
                android:gravity="center" 
 | 
                android:padding="6dp" 
 | 
                android:text="新乡域名卡" 
 | 
                android:textColor="@drawable/radio_text_select" 
 | 
                android:textSize="20sp" /> 
 | 
  
 | 
            <RadioButton 
 | 
                android:id="@+id/luyi" 
 | 
                android:layout_width="match_parent" 
 | 
                android:layout_height="wrap_content" 
 | 
                android:layout_marginLeft="50dp" 
 | 
                android:layout_marginTop="25dp" 
 | 
                android:layout_marginRight="50dp" 
 | 
                android:background="@drawable/radio_select" 
 | 
                android:button="@null" 
 | 
                android:gravity="center" 
 | 
                android:padding="6dp" 
 | 
                android:text="鹿邑域名卡" 
 | 
                android:textColor="@drawable/radio_text_select" 
 | 
                android:textSize="20sp" /> 
 | 
        </RadioGroup> 
 | 
  
 | 
        <View 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="2px" 
 | 
            android:layout_marginTop="35dp" 
 | 
            android:background="@color/line_bg" /> 
 | 
  
 | 
        <LinearLayout 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:gravity="center_horizontal" 
 | 
            android:padding="5dp" 
 | 
            android:orientation="horizontal"> 
 | 
  
 | 
            <TextView 
 | 
                android:id="@+id/ok" 
 | 
                android:layout_width="match_parent" 
 | 
                android:layout_height="@dimen/dialog_btn_height" 
 | 
                android:background="@drawable/textview_select_bg" 
 | 
                android:gravity="center" 
 | 
                android:paddingLeft="15dp" 
 | 
                android:paddingTop="5dp" 
 | 
                android:paddingRight="15dp" 
 | 
                android:paddingBottom="5dp" 
 | 
                android:text="确      认" 
 | 
                android:textColor="@color/dialog_btn" 
 | 
                android:textSize="20sp" /> 
 | 
  
 | 
  
 | 
        </LinearLayout> 
 | 
  
 | 
  
 | 
    </LinearLayout> 
 | 
  
 | 
</LinearLayout> 
 |