mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-24 15:01:32 +01:00
22 lines
947 B
XML
22 lines
947 B
XML
![]() |
<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:id="@+id/container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="?attr/colorPrimaryDark"
|
||
|
android:longClickable="false"
|
||
|
android:onClick="clickAnywhere"
|
||
|
tools:context=".MainActivity">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Hello."
|
||
|
android:textColor="#fff"
|
||
|
android:textSize="64sp"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|