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

16 lines
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:background="?attr/colorBackgroundSecondary" style="@style/UiKit_ViewGroup_NestedScrollView">
<LinearLayout style="@style/UiKit_ViewGroup_LinearLayout">
<TextView android:textAppearance="@style/UiKit_TextAppearance_Bold" android:textSize="@dimen/uikit_textsize_small" android:textColor="?attr/colorHeaderSecondary" android:id="@+id/guild_profile_sheet_emojis_count" android:layout_marginTop="24dp" android:layout_marginBottom="8dp" android:text="@string/thread_browser_filter_settings_visibility" android:textAllCaps="true" android:layout_marginStart="16dp" style="@style/UiKit_TextView"/>
<androidx.cardview.widget.CardView android:layout_marginBottom="16dp" app:cardBackgroundColor="?attr/colorBackgroundPrimary" app:cardCornerRadius="8dp" app:cardElevation="0dp" app:contentPadding="0dp" style="@style/UserProfile_Section_Card">
<LinearLayout style="@style/UiKit_ViewGroup_LinearLayout">
<com.discord.views.CheckedSetting android:id="@+id/thread_browser_visibility_public" app:cs_text="@string/thread_browser_public" app:cs_view_type="1" style="@style/UiKit_CheckedSetting_Themed"/>
<com.discord.views.CheckedSetting android:id="@+id/thread_browser_visibility_private" app:cs_text="@string/thread_browser_private" app:cs_view_type="1" style="@style/UiKit_CheckedSetting_Themed"/>
</LinearLayout>
</androidx.cardview.widget.CardView>
<androidx.cardview.widget.CardView android:id="@+id/thread_browser_moderator_view_card" app:cardBackgroundColor="?attr/colorBackgroundPrimary" app:cardCornerRadius="8dp" app:cardElevation="0dp" app:contentPadding="0dp" style="@style/UserProfile_Section_Card">
<com.discord.views.CheckedSetting android:id="@+id/thread_browser_moderator_view" app:cs_subtext="@string/moderator_view_description" app:cs_text="@string/moderator_view" app:cs_view_type="2" style="@style/UiKit_CheckedSetting_Themed"/>
</androidx.cardview.widget.CardView>
</LinearLayout>
</androidx.core.widget.NestedScrollView>