aboutsummaryrefslogtreecommitdiffstats
path: root/android/app/src/main/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'android/app/src/main/res/layout')
-rw-r--r--android/app/src/main/res/layout/activity_main.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/android/app/src/main/res/layout/activity_main.xml b/android/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..f9d5cdd
--- /dev/null
+++ b/android/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,19 @@
+<?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">
+
+ <!-- WebView for loading the URL -->
+ <WebView
+ android:id="@+id/webView"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
+
+ <!-- Spinner for loading indication -->
+ <ProgressBar
+ android:id="@+id/progressBar"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerInParent="true"
+ android:visibility="gone" />
+</RelativeLayout> \ No newline at end of file