|
| 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 | + |
| 8 | + <com.gifft.gift_ui.GiftLayout |
| 9 | + android:id="@+id/giftLayout" |
| 10 | + android:layout_width="0dp" |
| 11 | + android:layout_height="wrap_content" |
| 12 | + app:giftColor="@android:color/holo_red_dark" |
| 13 | + app:layout_constraintBottom_toBottomOf="parent" |
| 14 | + app:layout_constraintEnd_toEndOf="parent" |
| 15 | + app:layout_constraintStart_toStartOf="parent" |
| 16 | + app:layout_constraintTop_toTopOf="parent" |
| 17 | + app:layout_constraintVertical_bias="0.7" |
| 18 | + app:layout_constraintWidth_percent="0.6" |
| 19 | + app:opened="true"> |
| 20 | + |
| 21 | + <EditText |
| 22 | + android:id="@+id/giftText" |
| 23 | + android:layout_width="match_parent" |
| 24 | + android:layout_height="wrap_content" |
| 25 | + android:layout_marginVertical="8dp" |
| 26 | + android:background="@color/colorAccent" |
| 27 | + android:gravity="center" |
| 28 | + android:importantForAutofill="no" |
| 29 | + android:inputType="textMultiLine|textNoSuggestions" |
| 30 | + android:padding="8dp" |
| 31 | + android:textColor="@android:color/white" |
| 32 | + android:textSize="20sp" |
| 33 | + tools:text="TEST TEST TEST" /> |
| 34 | + </com.gifft.gift_ui.GiftLayout> |
| 35 | +</androidx.constraintlayout.widget.ConstraintLayout> |
0 commit comments