1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/rl"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/x7_white"
- android:fitsSystemWindows="true"
- android:gravity="center"
- tools:ignore="MissingDefaultResource">
- <include
- android:id="@+id/layout_title"
- layout="@layout/x7_activity_title" />
- <RelativeLayout
- android:id="@+id/rl_content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@+id/layout_title"
- android:layout_alignParentRight="true"
- android:layout_marginRight="25dp"
- android:gravity="center_horizontal">
- <com.smwl.smsdk.myview.MyScrollView
- android:id="@+id/scroll_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:fillViewport="false"
- android:scrollbars="none">
- <FrameLayout
- android:id="@+id/fra_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:gravity="center_horizontal"
- android:orientation="vertical" />
- </com.smwl.smsdk.myview.MyScrollView>
- </RelativeLayout>
- </RelativeLayout>
|