mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2025-01-08 08:55:51 +01:00
75d3dffb14
"Optimize imports" has been run on all source files, there might be unrelated changes, but these should be harmless.
26 lines
963 B
XML
26 lines
963 B
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.AppBlacklistActivity">
|
|
|
|
<androidx.appcompat.widget.SearchView
|
|
android:id="@+id/appListViewSearch"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:paddingEnd="16dp"
|
|
android:paddingStart="16dp">
|
|
|
|
</androidx.appcompat.widget.SearchView>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/appListView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/appListViewSearch"
|
|
android:layout_centerHorizontal="true"
|
|
android:divider="@null" />
|
|
|
|
</RelativeLayout>
|