Changes of com.discord v923

This commit is contained in:
root 2019-07-24 13:27:29 +02:00
parent e85c2cf0c0
commit 6d19e001e8
21296 changed files with 3125625 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout android:background="?colorPrimaryDark" 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_toRightOf="@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"?>
<RelativeLayout android:orientation="vertical" android:id="@id/main_panel_center" android:background="?colorPrimaryDark" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:background="?colorPrimary" android:layout_width="wrap_content" android:layout_height="wrap_content">
<include layout="@layout/widget_main_panel_center_content" />
</RelativeLayout>
</RelativeLayout>

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" />