123456789101112131415161718192021 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="vertical" >
- <com.shanshen.sdk.view.CornerCompatView
- android:layout_width="@dimen/ss_login_width"
- android:layout_height="@dimen/ss_login_height_old"
- app:ss_radius="@dimen/ss_webview_radius"
- android:background="@color/ss_font_white">
- <WebView
- android:id="@+id/webview"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </com.shanshen.sdk.view.CornerCompatView>
- </LinearLayout>
|