<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:clipToPadding="true"
|
android:fitsSystemWindows="true">
|
|
<RelativeLayout
|
android:id="@+id/game_server_title"
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:background="@color/sp_color_fac000">
|
|
<TextView
|
android:id="@+id/title_text"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_centerVertical="true"
|
android:text="@string/sp_txt_appeal"
|
android:textColor="#FFFFFF"
|
android:textSize="18sp"/>
|
|
<ImageView
|
android:id="@+id/back"
|
android:layout_width="48dp"
|
android:layout_height="48dp"
|
android:layout_centerVertical="true"
|
android:background="@drawable/sp_backbtn_bg_selector"
|
android:padding="13dp"
|
android:scaleType="fitXY"
|
android:src="@mipmap/sp_login_close"/>
|
</RelativeLayout>
|
|
<ProgressBar
|
android:id="@+id/myProgressBar"
|
style="?android:attr/progressBarStyleHorizontal"
|
android:layout_width="match_parent"
|
android:layout_height="3dip"
|
android:layout_below="@id/game_server_title"
|
android:progressDrawable="@drawable/sp_pg"
|
android:visibility="gone"
|
/>
|
|
<TextView
|
android:id="@+id/txt_community_close"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:background="@drawable/sp_textview_selector"
|
android:clickable="true"
|
android:drawableLeft="@mipmap/cs_pay_close"
|
android:visibility="gone"/>
|
|
<com.tencent.smtt.sdk.WebView
|
android:id="@+id/game_server_webview"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_alignParentLeft="true"
|
android:layout_below="@+id/myProgressBar"/>
|
|
<!--
|
<cc.sp.gamesdk.widget.ProgressWebView
|
android:id="@+id/game_server_webview"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_alignParentLeft="true"
|
android:layout_below="@+id/myProgressBar" />
|
-->
|
|
</RelativeLayout>
|