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

13 lines
2.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" android:background="?attr/primary_600" android:layout_height="match_parent" style="@style/UiKit_ViewGroup_LinearLayout">
<androidx.appcompat.widget.Toolbar android:background="@color/transparent" app:navigationIcon="?attr/ic_action_bar_close" style="@style/AppTheme_Toolbar"/>
<androidx.constraintlayout.widget.ConstraintLayout android:layout_height="0dp" android:layout_weight="1" android:paddingStart="16dp" android:paddingEnd="16dp" style="@style/UiKit_ViewGroup_ConstraintLayout">
<TextView android:gravity="center" android:layout_gravity="center" android:id="@+id/nux_guild_template_section_title" android:layout_marginBottom="8dp" android:text="@string/guild_template_selector_title" app:layout_constraintBottom_toTopOf="@+id/nux_guild_template_section_custom_label" app:layout_constraintEnd_toEndOf="0" app:layout_constraintStart_toStartOf="0" app:layout_constraintTop_toTopOf="0" app:layout_constraintVertical_bias="0" app:layout_constraintVertical_chainStyle="2" style="@style/UiKit_TextView_H1_Bold"/>
<TextView android:gravity="center" android:layout_gravity="center" android:id="@+id/nux_guild_template_section_custom_label" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="24dp" android:text="@string/guild_template_selector_description" app:layout_constraintBottom_toTopOf="@+id/recycler_view" app:layout_constraintTop_toBottomOf="@+id/nux_guild_template_section_title" style="@style/UiKit_TextView"/>
<androidx.recyclerview.widget.RecyclerView android:id="@+id/recycler_view" android:layout_width="0dp" android:layout_height="0dp" app:layout_constrainedHeight="true" app:layout_constraintBottom_toTopOf="@+id/nux_guild_template_section_bottom" app:layout_constraintEnd_toEndOf="0" app:layout_constraintStart_toStartOf="0" app:layout_constraintTop_toBottomOf="@+id/nux_guild_template_section_custom_label" style="@style/UiKit_ViewGroup_RecyclerView"/>
<LinearLayout android:id="@+id/nux_guild_template_section_bottom" android:layout_marginTop="16dp" android:layout_marginBottom="16dp" app:layout_constraintBottom_toBottomOf="0" app:layout_constraintStart_toStartOf="0" app:layout_constraintTop_toBottomOf="@+id/recycler_view" style="@style/UiKit_ViewGroup_LinearLayout">
<TextView android:textSize="@dimen/uikit_textsize_xlarge" android:layout_gravity="center_horizontal" android:layout_marginBottom="16dp" android:text="@string/nuf_have_an_invite_already" style="@style/UiKit_TextView_Semibold"/>
<com.google.android.material.button.MaterialButton android:id="@+id/nux_guild_template_action_join" android:text="@string/nuf_join_a_friend" style="@style/UiKit_Material_Button_Secondary"/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>