2023-03-04 19:10:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-03-15 23:08:57 +00:00
|
|
|
<RelativeLayout
|
2023-03-04 19:10:05 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2023-03-11 02:37:27 +00:00
|
|
|
<WebView
|
2023-10-10 00:46:17 +00:00
|
|
|
android:id="@+id/web"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text"
|
2023-03-11 02:37:27 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2023-10-10 00:46:17 +00:00
|
|
|
android:gravity="center_horizontal|center_vertical"/>
|
2023-03-15 23:08:57 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/refresh"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:text="REFRESH"/>
|
|
|
|
</RelativeLayout>
|