diff options
| author | lonkaars <loek@pipeframe.xyz> | 2024-01-29 15:20:32 +0100 |
|---|---|---|
| committer | lonkaars <loek@pipeframe.xyz> | 2024-01-29 15:20:32 +0100 |
| commit | 3e17e1a4132ed11c6a5ab66dca8840586061b90d (patch) | |
| tree | 43c7ef3e59cc1aecbdc1dc099fb8b3a54e477c06 /app/src/main/res/layout | |
initial commit (android studio hello world)
Diffstat (limited to 'app/src/main/res/layout')
| -rw-r--r-- | app/src/main/res/layout/activity_main.xml | 18 |
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..c75d057 --- /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_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + +</androidx.constraintlayout.widget.ConstraintLayout> |