UNPKG

@sfenton/react-native-readium-with-cfi

Version:

A react-native wrapper for https://readium.org/ with CFI support

40 lines (35 loc) 1.66 kB
<?xml version="1.0" encoding="utf-8"?><!-- ~ Module: r2-navigator-kotlin ~ Developers: Aferdita Muriqi, Clément Baumann ~ ~ Copyright (c) 2018. Readium Foundation. All rights reserved. ~ Use of this source code is governed by a BSD-style license which is detailed in the ~ LICENSE file present in the project repository where this source code is maintained. --> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/search_overlay" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/colorAccent"> <androidx.recyclerview.widget.RecyclerView android:id="@+id/search_recyclerView" android:layout_width="0dp" android:layout_height="0dp" android:background="@android:color/white" app:layout_constraintBottom_toBottomOf="@id/search_overlay" app:layout_constraintEnd_toEndOf="@id/search_overlay" app:layout_constraintStart_toStartOf="@id/search_overlay" app:layout_constraintTop_toTopOf="@id/search_overlay" /> <TextView android:id="@+id/noResultLabel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="24dp" android:text="@string/no_result" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" android:visibility="gone"/> </androidx.constraintlayout.widget.ConstraintLayout>