1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <layout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".ui.fragment.EditDebounceFragment">
- <EditText
- android:id="@+id/etInput"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:layout_marginHorizontal="32dp"
- android:layout_marginTop="20dp"
- android:hint="输入内容将自动查询当前时间" />
- <TextView
- android:id="@+id/tvFragment"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_margin="32dp"
- android:textStyle="bold" />
- </LinearLayout>
- </layout>
|