discord-jadx/app/src/main/res/layout/widget_channel_settings_permissions_advanced.xml
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

19 lines
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" style="@style/UiKit_ViewGroup_CoordinatorLayout_Page">
<androidx.core.widget.NestedScrollView android:fitsSystemWindows="true" android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_behavior="com.discord.app.AppScrollingNestedViewBehavior">
<LinearLayout android:paddingBottom="64dp" android:layout_marginTop="16dp" style="@style/UiKit_ViewGroup_LinearLayout">
<TextView android:textSize="@dimen/uikit_textsize_large" android:textColor="?attr/primary_300" android:id="@+id/add_role" android:focusable="true" android:clickable="true" android:text="@string/add_a_role" app:drawableStartCompat="?attr/ic_plus_a60" style="@style/UiKit_Settings_Item_Icon"/>
<TextView android:textSize="@dimen/uikit_textsize_large" android:textColor="?attr/primary_300" android:id="@+id/add_member" android:focusable="true" android:clickable="true" android:text="@string/add_a_member" app:drawableStartCompat="?attr/ic_plus_a60" style="@style/UiKit_Settings_Item_Icon"/>
<LinearLayout android:id="@+id/roles_container" style="@style/UiKit_ViewGroup_LinearLayout">
<View style="@style/UiKit_Settings_Divider"/>
<TextView android:text="@string/roles" style="@style/UiKit_Settings_Item_Header"/>
<androidx.recyclerview.widget.RecyclerView android:id="@+id/roles_recycler" style="@style/UiKit_ViewGroup_RecyclerView"/>
</LinearLayout>
<LinearLayout android:id="@+id/members_container" style="@style/UiKit_ViewGroup_LinearLayout">
<View style="@style/UiKit_Settings_Divider"/>
<TextView android:text="@string/members" style="@style/UiKit_Settings_Item_Header"/>
<androidx.recyclerview.widget.RecyclerView android:id="@+id/members_recycler" style="@style/UiKit_ViewGroup_RecyclerView"/>
</LinearLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>