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

14 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout style="@style/UiKit.ViewGroup.LinearLayout"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:id="@id/feedback_rating_summary_prompt" style="@style/Feedback.Row.Prompt" />
<LinearLayout style="@style/Feedback.Row.RatingContainer">
<ImageView android:id="@id/feedback_sad_rating" android:src="?ic_selectable_feedback_sad" android:contentDescription="@string/call_feedback_sentiment_negative" android:layout_marginEnd="24.0dip" style="@style/UiKit.ImageView.Clickable" />
<ImageButton android:id="@id/feedback_neutral_rating" android:src="?ic_selectable_feedback_neutral" android:contentDescription="@string/call_feedback_sentiment_neutral" android:layout_marginEnd="24.0dip" style="@style/UiKit.ImageView.Clickable" />
<ImageButton android:id="@id/feedback_happy_rating" android:src="?ic_selectable_feedback_happy" android:contentDescription="@string/call_feedback_sentiment_positive" style="@style/UiKit.ImageView.Clickable" />
</LinearLayout>
<TextView android:id="@id/feedback_issue_section_header" android:visibility="gone" style="@style/Feedback.Row.SectionHeader" />
<androidx.cardview.widget.CardView android:id="@id/feedback_issues_card" android:visibility="gone" style="@style/Feedback.Row.SectionCard">
<androidx.recyclerview.widget.RecyclerView android:id="@id/feedback_issues_recycler" style="@style/UiKit.ViewGroup.RecyclerView" />
</androidx.cardview.widget.CardView>
</LinearLayout>