1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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="wrap_content"
- android:orientation="vertical"
- android:background="@color/x7_white"
- tools:ignore="MissingDefaultResource">
- <RelativeLayout
- android:id="@+id/rl_content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal">
- <com.smwl.smsdk.myview.MyScrollView
- android:id="@+id/scroll_view"
- android:layout_width="match_parent"
- android:layout_height="100dp"
- android:layout_centerHorizontal="true"
- 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_horizontal|top"
- android:paddingTop="30dp" />
- </com.smwl.smsdk.myview.MyScrollView>
- </RelativeLayout>
- <include
- android:id="@+id/layout_title"
- layout="@layout/x7_activity_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="16dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp" />
- </RelativeLayout>
|