Changes of com.discord v1144

This commit is contained in:
distok 2020-05-17 12:40:10 +00:00
parent 4746542b20
commit f52990c3c2
25752 changed files with 4382359 additions and 77 deletions

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout android:background="?colorBackgroundSecondary" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:fitsSystemWindows="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
<include android:id="@id/main_panel_left" layout="@layout/widget_main_panel_left" />
<com.discord.widgets.main.WidgetMainDrawerLayout android:id="@id/main_drawer" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_toEndOf="@id/main_panel_left">
<include layout="@layout/widget_main_panel_center" />
<include layout="@layout/widget_main_panel_right" />
</com.discord.widgets.main.WidgetMainDrawerLayout>
<include layout="@layout/widget_main_panel_loading" />
</RelativeLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.discord.utilities.view.rounded.RoundedRelativeLayout android:orientation="vertical" android:id="@id/main_panel_center" android:background="?colorBackgroundSecondary" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:background="?colorBackgroundPrimary" android:layout_width="wrap_content" android:layout_height="wrap_content">
<include layout="@layout/widget_main_panel_center_content" />
</RelativeLayout>
</com.discord.utilities.view.rounded.RoundedRelativeLayout>

View file

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<ViewStub android:layout_width="wrap_content" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android" />