|
@@ -0,0 +1,72 @@
|
|
|
+<?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:orientation="vertical"
|
|
|
+ android:background="@drawable/login_button_normal">
|
|
|
+
|
|
|
+ <com.sunwin.visitorapp.view.UINav
|
|
|
+ android:id="@+id/UINav"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_marginVertical="20dp"
|
|
|
+ android:layout_marginHorizontal="30dp"
|
|
|
+ android:background="@drawable/card_white"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:background="@drawable/card_gary"
|
|
|
+ >
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/RadioView"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/RadioBlackList"
|
|
|
+ android:text="黑名单库"
|
|
|
+ style="@style/Setting_Tab_Item_View"/>
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/RadioUserManage"
|
|
|
+ android:text="用户管理"
|
|
|
+ style="@style/Setting_Tab_Item_View"/>
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/RadioRoleManage"
|
|
|
+ android:text="角色管理"
|
|
|
+ style="@style/Setting_Tab_Item_View"/>
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/RadioLogManage"
|
|
|
+ android:text="日志管理"
|
|
|
+ style="@style/Setting_Tab_Item_View"/>
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/RadioSystemManage"
|
|
|
+ android:text="系统设置"
|
|
|
+ style="@style/Setting_Tab_Item_View"/>
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/RadioPageManage"
|
|
|
+ android:text="页面管理"
|
|
|
+ style="@style/Setting_Tab_Item_View"/>
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1">
|
|
|
+ <androidx.viewpager.widget.ViewPager
|
|
|
+ android:id="@+id/ViewPagerSetting"
|
|
|
+ android:isScrollContainer="false"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"/>
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+</LinearLayout>
|