123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:flatui="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/FFF7F7F7"
- android:scrollbars="none">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <include android:id="@+id/titlebar" layout="@layout/titlebar"/>
- <com.jsjty.jdc.app.widget.setting.SettingView
- android:id="@+id/cofig_setting"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingLeft="@dimen/space_5"
- android:paddingRight="@dimen/space_5"
- android:layout_marginBottom="20dp"
- flatui:iOSStyle="true" />
- </LinearLayout>
- </ScrollView>
|