12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="vertical">
- <WebView
- android:id="@+id/dalan_wv_notice"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"></WebView>
- <Button
- android:id="@+id/dalan_btn_jump_url"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="13dp"
- android:background="@drawable/zk_notice_btn_bg"
- android:text="立即前往"
- android:textColor="#ffffff"
- android:textSize="18sp"/>
- </LinearLayout>
|