2019-07-03 01:19:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-12 22:29:19 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-14 14:41:00 +02:00
|
|
|
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=".MainActivity">
|
2019-07-03 01:19:45 +02:00
|
|
|
|
2021-01-30 14:59:11 +01:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/app_bar_layout"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-01-30 14:59:11 +01:00
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:keyboardNavigationCluster="false"
|
|
|
|
android:touchscreenBlocksFocus="false"
|
|
|
|
app:elevation="0dp">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="62dp"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
app:layout_scrollFlags="scroll">
|
|
|
|
|
|
|
|
<emu.skyline.views.SearchBarView
|
|
|
|
android:id="@+id/search_bar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipe_refresh_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="-4dp"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/app_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingTop="4dp" />
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2020-04-12 22:29:19 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|