aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-04-30 09:57:06 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-04-30 09:57:06 -0600
commita31eb389d59e8a209549e6a8bb7537e93e0ce59e (patch)
tree39bf3127c933f1dd0866877a9ad114e84d159657 /app/src/main/res/layout
downloadwiimmfi-watcher-a31eb389d59e8a209549e6a8bb7537e93e0ce59e.tar
wiimmfi-watcher-a31eb389d59e8a209549e6a8bb7537e93e0ce59e.tar.gz
wiimmfi-watcher-a31eb389d59e8a209549e6a8bb7537e93e0ce59e.tar.bz2
initial commit
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/activity_main.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..4fc2444
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ tools:context=".MainActivity">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Hello World!"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintLeft_toLeftOf="parent"
+ app:layout_constraintRight_toRightOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file