39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<org.autojs.autojs.theme.widget.ThemeColorTextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:hint="@string/text_class_or_package_name"
|
|
android:layout_height="wrap_content"
|
|
app:expandedHintEnabled="false">
|
|
|
|
<androidx.appcompat.widget.AppCompatEditText
|
|
android:id="@+id/keywords"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</org.autojs.autojs.theme.widget.ThemeColorTextInputLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.ThemeColorRecyclerView
|
|
android:id="@+id/result_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="400dp" />
|
|
|
|
<me.zhanghai.android.materialprogressbar.MaterialProgressBar
|
|
android:id="@+id/progress_bar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:visibility="gone" />
|
|
|
|
</FrameLayout>
|
|
</LinearLayout> |