discord-jadx/app/src/main/res/layout/widget_feedback_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

10 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/feedback_sheet_container" android:background="?attr/colorBackgroundSecondary" style="@style/UiKit_ViewGroup_NestedScrollView">
<LinearLayout android:layout_marginBottom="16dp" style="@style/UiKit_ViewGroup_LinearLayout">
<FrameLayout android:background="?attr/colorBackgroundTertiary" style="@style/UiKit_ViewGroup_LinearLayout">
<TextView android:id="@+id/feedback_sheet_title" android:text="@string/call_feedback_sheet_title" style="@style/UiKit_ListItem_Icon"/>
<ImageView android:layout_gravity="right|center_vertical|center_horizontal|center|end" android:id="@+id/feedback_sheet_close_button" android:background="?attr/bg_pressed_highlight" android:padding="16dp" android:src="?attr/ic_close_24dp" android:contentDescription="@string/close" style="@style/UiKit_ImageView"/>
</FrameLayout>
<com.discord.widgets.voice.feedback.FeedbackView android:id="@+id/feedback_sheet_feedback_view" android:layout_width="match_parent" android:layout_height="wrap_content"/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>