apkfuckery/com.discord/res/layout/widget_friends_list.xml

12 lines
1.6 KiB
XML
Raw Normal View History

2020-05-17 12:40:10 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-07-08 16:44:49 +00:00
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<com.discord.app.AppViewFlipper android:id="@id/friends_list_flipper" android:background="?colorBackgroundPrimary" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_below="@id/action_bar_toolbar_layout">
2020-05-17 12:40:10 +00:00
<androidx.recyclerview.widget.RecyclerView android:id="@id/friends_list_recycler" android:background="?colorBackgroundPrimary" android:scrollbars="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" style="@style/UiKit.ViewGroup.RecyclerView" />
<com.discord.widgets.friends.EmptyFriendsStateView android:id="@id/friends_list_empty_friends_state_view" android:layout_width="fill_parent" android:layout_height="fill_parent" app:ef_title_text_size="@dimen/uikit_textsize_xlarge" />
<androidx.recyclerview.widget.RecyclerView android:id="@id/friends_list_loading" android:background="?colorBackgroundPrimary" android:scrollbars="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" style="@style/UiKit.ViewGroup.RecyclerView" />
</com.discord.app.AppViewFlipper>
2020-07-08 16:44:49 +00:00
<com.google.android.material.appbar.AppBarLayout style="@style/AppTheme.AppBarLayout">
2020-08-26 17:47:03 +00:00
<androidx.appcompat.widget.Toolbar app:contentInsetStartWithNavigation="0.0dip" style="@style/AppTheme.Toolbar" />
2020-07-08 16:44:49 +00:00
</com.google.android.material.appbar.AppBarLayout>
</RelativeLayout>