12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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="#FFFFFF"
- android:orientation="horizontal">
- <LinearLayout
- android:id="@+id/pb_account_bottom"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="#FFFFFF"
- android:orientation="vertical">
- <RadioGroup
- android:id="@+id/pb_rg"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:paddingTop="10dp"
- android:orientation="vertical">
- <RadioButton
- android:id="@+id/pb_btn_hot"
- style="@style/radiostyle"
- android:padding="10dp"
- android:background="#FFFFFF"
- android:checked="true"
- android:drawableTop="@drawable/pb_home_hots_on"
- android:text="热点" />
- <RadioButton
- android:id="@+id/pb_btn_libao"
- style="@style/radiostyle"
- android:background="#FFFFFF"
- android:padding="10dp"
- android:drawableTop="@drawable/pb_home_gifts_on"
- android:text="礼包" />
- <RadioButton
- android:id="@+id/pb_btn_gonglue"
- style="@style/radiostyle"
- android:background="#FFFFFF"
- android:padding="10dp"
- android:drawableTop="@drawable/pb_home_gonglue_on"
- android:text="攻略" />
- <RadioButton
- android:id="@+id/pb_btn_account"
- style="@style/radiostyle"
- android:background="#FFFFFF"
- android:padding="10dp"
- android:drawableTop="@drawable/pb_home_account_on"
- android:text="账号" />
- </RadioGroup>
- </LinearLayout>
- <View
- android:id="@+id/pb_line"
- android:layout_width="0.1dp"
- android:layout_height="match_parent"
- android:background="@color/pb_line" />
- <WebView
- android:id="@+id/pb_account_webview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"></WebView>
- </LinearLayout>
|