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

69 lines
2.5 KiB
XML
Raw Normal View History

2020-03-16 15:41:57 +00:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView
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"
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:background="?colorSurface"
android:clipToPadding="false"
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-04-15 13:35:15 +00:00
<include
android:id="@+id/home_vanced_wrapper"
layout="@layout/include_vanced"
android:layout_width="match_parent"
2020-04-15 13:35:15 +00:00
android:layout_height="wrap_content"
2020-04-22 09:41:18 +00:00
android:layout_marginTop="8dp"
2020-04-15 13:35:15 +00:00
android:layout_marginStart="@dimen/stdp"
android:layout_marginEnd="@dimen/stdp" />
2020-04-15 13:35:15 +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" />
<include
android:id="@+id/home_changelog_wrapper"
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-04-15 13:35:15 +00:00
<include
android:id="@+id/home_useful_links_wrapper"
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>
2020-04-15 13:35:15 +00:00
</androidx.core.widget.NestedScrollView>