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">
|
2024-04-26 18:10:22 -04:00
|
|
|
<com.unprompted.tildefriends.TildeFriendsWebView
|
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"/>
|
2024-04-17 19:55:14 -04:00
|
|
|
<TextView
|
2023-03-15 23:08:57 +00:00
|
|
|
android:id="@+id/refresh"
|
2024-04-17 19:55:14 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="160dp"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:gravity="center_horizontal|center_vertical"
|
|
|
|
android:textColor="#fff"
|
|
|
|
android:background="#44f"/>
|
2023-03-15 23:08:57 +00:00
|
|
|
</RelativeLayout>
|