fragment_edit_debounce.xml 945 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools">
  4. <LinearLayout
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".ui.fragment.EditDebounceFragment">
  9. <EditText
  10. android:id="@+id/etInput"
  11. android:layout_width="match_parent"
  12. android:layout_height="50dp"
  13. android:layout_marginHorizontal="32dp"
  14. android:layout_marginTop="20dp"
  15. android:hint="输入内容将自动查询当前时间" />
  16. <TextView
  17. android:id="@+id/tvFragment"
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:layout_margin="32dp"
  21. android:textStyle="bold" />
  22. </LinearLayout>
  23. </layout>