activity_main.xml 938 B

12345678910111213141516171819202122
  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=".MainActivity">
  8. <EditText
  9. android:id="@+id/et"
  10. android:layout_width="200dp"
  11. android:layout_height="wrap_content"
  12. android:layout_marginBottom="292dp"
  13. android:focusableInTouchMode="false"
  14. android:hint="input text."
  15. android:textColor="@android:color/black"
  16. app:layout_constraintBottom_toBottomOf="parent"
  17. app:layout_constraintEnd_toEndOf="parent"
  18. app:layout_constraintHorizontal_bias="0.5"
  19. app:layout_constraintStart_toStartOf="parent" />
  20. </androidx.constraintlayout.widget.ConstraintLayout>