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

63 lines
2.3 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.SlidingNestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
2020-04-23 14:21:53 +00:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2020-05-17 06:38:09 +00:00
android:layout_height="match_parent"
2020-04-15 13:35:15 +00:00
android:fillViewport="true"
android:scrollbars="none">
2020-04-15 13:35:15 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-04-22 09:41:18 +00:00
android:layout_marginTop="4dp"
2020-04-15 13:35:15 +00:00
android:orientation="vertical">
2020-04-22 09:41:18 +00:00
<include
android:id="@+id/home_network_wrapper"
layout="@layout/include_network_error"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginStart="@dimen/stdp"
android:layout_marginEnd="@dimen/stdp"
2020-04-23 14:21:53 +00:00
android:visibility="gone"
tools:visibility="visible"/>
2020-04-22 09:41:18 +00:00
2020-05-10 20:06:54 +00:00
<include
layout="@layout/include_vanced"
android:layout_width="match_parent"
2020-05-10 20:06:54 +00:00
android:layout_height="wrap_content"
2020-04-22 09:41:18 +00:00
android:layout_marginTop="8dp"
2020-05-10 20:06:54 +00:00
android:layout_marginStart="@dimen/stdp"
android:layout_marginEnd="@dimen/stdp" />
2020-05-10 20:06:54 +00:00
<include
android:id="@+id/home_microg_wrapper"
layout="@layout/include_microg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/stdp"
android:layout_marginTop="@dimen/stdp"
android:layout_marginEnd="@dimen/stdp" />
2020-05-10 20:06:54 +00:00
<include
layout="@layout/include_changelogs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/stdp"
android:layout_marginTop="@dimen/stdp"
android:layout_marginEnd="@dimen/stdp" />
2020-05-10 14:44:33 +00:00
2020-05-10 20:06:54 +00:00
<include
layout="@layout/include_useful_links"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/stdp"
android:layout_marginTop="@dimen/stdp"
android:layout_marginEnd="@dimen/stdp" />
2020-04-15 13:35:15 +00:00
</LinearLayout>
</com.vanced.manager.ui.core.SlidingNestedScrollView>