VancedManager/app/src/main/res/layout/fragment_home.xml

63 lines
2.6 KiB
XML
Raw Normal View History

2020-03-16 15:41:57 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-12-11 19:22:43 +00:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-11-14 21:48:47 +00:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/home_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
2020-10-31 19:45:39 +00:00
android:layout_height="match_parent"
2020-11-14 21:48:47 +00:00
android:fillViewport="true"
android:scrollbars="none">
2020-04-15 13:35:15 +00:00
2020-11-14 21:48:47 +00:00
<LinearLayout
android:layout_width="match_parent"
2020-10-31 19:45:39 +00:00
android:layout_height="match_parent"
2020-11-14 21:48:47 +00:00
android:orientation="vertical">
2020-10-31 19:45:39 +00:00
2020-11-14 21:48:47 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_app_list"
2020-10-31 19:45:39 +00:00
android:layout_width="match_parent"
2020-11-14 21:48:47 +00:00
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:nestedScrollingEnabled="false"
tools:itemCount="3"
2020-12-11 19:22:43 +00:00
tools:listitem="@layout/view_app" />
2020-11-14 21:48:47 +00:00
<TextView
android:layout_marginHorizontal="24dp"
android:layout_marginTop="12dp"
2020-12-11 19:43:51 +00:00
android:text="@string/support_us"
2020-12-11 19:22:43 +00:00
style="@style/CardTextHeader" />
2020-11-14 21:48:47 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_sponsors"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:nestedScrollingEnabled="false"
tools:itemCount="2"
2020-12-11 19:22:43 +00:00
tools:listitem="@layout/view_sponsor" />
2020-11-14 21:48:47 +00:00
2020-12-11 19:43:51 +00:00
<TextView
android:layout_marginHorizontal="24dp"
android:layout_marginTop="12dp"
android:text="@string/useful_links"
style="@style/CardTextHeader" />
2020-11-14 21:48:47 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_links"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:nestedScrollingEnabled="false"
android:paddingBottom="8dp"
tools:itemCount="6"
2020-12-11 19:22:43 +00:00
tools:listitem="@layout/view_social_link" />
2020-11-14 21:48:47 +00:00
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>