mirror of
https://github.com/jrpie/Launcher.git
synced 2025-04-19 18:30:50 +02:00
37 lines
No EOL
1.3 KiB
XML
37 lines
No EOL
1.3 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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/list_apps_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/list_apps_rview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_weight="1"
|
|
android:scrollbars="vertical">
|
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
|
|
<androidx.appcompat.widget.SearchView
|
|
android:id="@+id/list_apps_searchview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8sp"
|
|
android:layout_weight="0"
|
|
android:iconifiedByDefault="false"
|
|
app:iconifiedByDefault="false"
|
|
app:queryHint="@string/list_apps_search_hint"
|
|
app:searchHintIcon="@drawable/baseline_search_24"
|
|
app:searchIcon="@drawable/baseline_search_24" />
|
|
|
|
|
|
</LinearLayout> |