Files
tildefriends/src/android/res/layout/activity_main.xml
Cory McWilliams 2478f3064d
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 32m5s
android: Don't draw behind the status bar.
2025-07-06 07:39:09 -04:00

27 lines
883 B
XML

<?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:orientation="vertical"
android:fitsSystemWindows="true"
android:background="#000">
<com.unprompted.tildefriends.TildeFriendsWebView
android:id="@+id/web"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal|center_vertical"/>
<TextView
android:id="@+id/refresh"
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"/>
</RelativeLayout>