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

67 lines
2.7 KiB
XML
Raw Normal View History

2020-03-16 15:41:57 +00:00
<?xml version="1.0" encoding="utf-8"?>
<com.vanced.manager.ui.core.ThemedSwipeRefreshlayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-11-14 21:48:47 +00:00
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-11-14 21:48:47 +00:00
android:id="@+id/home_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:progressBackgroundColor="?colorSurface">
2020-11-14 21:48:47 +00:00
<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
2020-12-14 21:18:58 +00:00
<com.vanced.manager.ui.core.ThemedTextView
2020-11-14 21:48:47 +00:00
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-14 21:18:58 +00:00
<com.vanced.manager.ui.core.ThemedTextView
2020-12-11 19:43:51 +00:00
android:layout_marginHorizontal="24dp"
android:layout_marginTop="12dp"
2020-12-18 12:12:52 +00:00
android:text="@string/social_media"
2020-12-11 19:43:51 +00:00
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>
2020-11-14 21:48:47 +00:00
</androidx.core.widget.NestedScrollView>
</com.vanced.manager.ui.core.ThemedSwipeRefreshlayout>