56 lines
2.2 KiB
XML
56 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".activity.SearcherActivity">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/linearLayout3"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:orientation="horizontal"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<ImageView
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_margin="@dimen/dp_10"
|
|
android:adjustViewBounds="true"
|
|
android:onClick="finish"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/ic_back" />
|
|
|
|
<androidx.appcompat.widget.SearchView
|
|
android:id="@+id/search"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="@dimen/dp_40"
|
|
app:iconifiedByDefault="false"
|
|
app:queryHint="@string/search_edit">
|
|
|
|
</androidx.appcompat.widget.SearchView>
|
|
|
|
</LinearLayout>
|
|
|
|
<com.scwang.smartrefresh.layout.SmartRefreshLayout
|
|
android:id="@+id/featured_refresh_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/linearLayout3">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
|
tools:listitem="@layout/item_app" />
|
|
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |