mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-11 19:27:50 +01:00
26 lines
960 B
XML
26 lines
960 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">
|
|
|
|
<android.support.v7.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">
|
|
|
|
</android.support.v7.widget.SearchView>
|
|
|
|
<android.support.v7.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>
|