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

11 lines
1.3 KiB
XML
Raw Normal View History

2020-01-30 10:23:52 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-03-01 21:12:02 +00:00
<com.discord.app.AppViewFlipper android:id="@id/friends_list_flipper" android:layout_width="fill_parent" android:layout_height="fill_parent"
2020-02-06 22:18:40 +00:00
xmlns:android="http://schemas.android.com/apk/res/android">
<androidx.recyclerview.widget.RecyclerView android:id="@id/friends_list_recycler_v2" android:background="?colorBackgroundPrimary" android:scrollbars="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" style="@style/UiKit.ViewGroup.RecyclerView" />
2020-02-12 20:59:48 +00:00
<LinearLayout style="@style/FriendsList.EmptyState">
<ImageView android:id="@id/friends_list_empty_image" android:src="@drawable/img_wumpus_playing_with_friends" android:contentDescription="@string/sample_empty_string" style="@style/FriendsList.EmptyState.Image" />
<TextView android:text="@string/friends_empty_state_all" style="@style/FriendsList.EmptyState.Title" />
<TextView android:text="@string/friends_empty_state_subtitle" style="@style/FriendsList.EmptyState.Subtitle" />
<com.google.android.material.button.MaterialButton android:textSize="@dimen/uikit_textsize_medium" android:id="@id/friends_list_empty_invite_add_friend" android:text="@string/add_friend" android:singleLine="true" style="@style/UiKit.Material.Button" />
2020-02-06 22:18:40 +00:00
</LinearLayout>
</com.discord.app.AppViewFlipper>