Mercurial
comparison gara/android/ndk/app/src/main/res/layout/activity_main.xml @ 47:829623189a57
[Gara] Android commit. Bazelfied it.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sat, 13 Dec 2025 14:20:34 -0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 46:b9a40c633c93 | 47:829623189a57 |
|---|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| 3 xmlns:app="http://schemas.android.com/apk/res-auto" | |
| 4 xmlns:tools="http://schemas.android.com/tools" | |
| 5 android:layout_width="match_parent" | |
| 6 android:layout_height="match_parent" | |
| 7 tools:context="com.example.android.bazel.MainActivity" | |
| 8 > | |
| 9 | |
| 10 <TextView | |
| 11 android:id="@+id/sample_text" | |
| 12 android:layout_width="wrap_content" | |
| 13 android:layout_height="wrap_content" | |
| 14 android:text="Hello World!" | |
| 15 app:layout_constraintBottom_toBottomOf="parent" | |
| 16 app:layout_constraintLeft_toLeftOf="parent" | |
| 17 app:layout_constraintRight_toRightOf="parent" | |
| 18 app:layout_constraintTop_toTopOf="parent" | |
| 19 /> | |
| 20 | |
| 21 </androidx.constraintlayout.widget.ConstraintLayout> |