mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-25 11:05:34 +00:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.SwipeRefreshLayout android:id="@+id/swipeRefreshLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:layout_marginTop="?attr/actionBarSize"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/empty_rv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:fontFamily="sans-serif-light"
|
|
android:gravity="center"
|
|
android:text="@string/no_modules_found"
|
|
android:textSize="20sp"
|
|
android:textStyle="italic"
|
|
android:visibility="gone" />
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:dividerHeight="@dimen/card_divider_space"
|
|
app:layoutManager="android.support.v7.widget.LinearLayoutManager" />
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout> |