discord-jadx/app/src/main/res/layout/feedback_view.xml

14 lines
2.5 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" style="@style/res_2131952592_uikit_viewgroup_linearlayout">
<androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/feedback_rating_container" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="8dp" style="@style/res_2131952589_uikit_viewgroup_constraintlayout">
<TextView android:id="@+id/feedback_rating_summary_prompt" app:layout_constraintEnd_toEndOf="0" app:layout_constraintStart_toStartOf="0" app:layout_constraintTop_toTopOf="0" style="@style/res_2131951961_feedback_row_prompt"/>
<ImageView android:id="@+id/feedback_sad_rating" android:src="?attr/ic_selectable_feedback_sad" android:contentDescription="@string/call_feedback_sentiment_negative" android:layout_marginEnd="24dp" app:layout_constraintEnd_toStartOf="@+id/feedback_neutral_rating" app:layout_constraintTop_toBottomOf="@+id/feedback_rating_summary_prompt" style="@style/res_2131952449_uikit_imageview_clickable"/>
<ImageButton android:id="@+id/feedback_neutral_rating" android:src="?attr/ic_selectable_feedback_neutral" android:contentDescription="@string/call_feedback_sentiment_neutral" app:layout_constraintEnd_toEndOf="0" app:layout_constraintStart_toStartOf="0" app:layout_constraintTop_toBottomOf="@+id/feedback_rating_summary_prompt" style="@style/res_2131952449_uikit_imageview_clickable"/>
<ImageButton android:id="@+id/feedback_happy_rating" android:src="?attr/ic_selectable_feedback_happy" android:contentDescription="@string/call_feedback_sentiment_positive" android:layout_marginStart="24dp" app:layout_constraintStart_toEndOf="@+id/feedback_neutral_rating" app:layout_constraintTop_toBottomOf="@+id/feedback_rating_summary_prompt" style="@style/res_2131952449_uikit_imageview_clickable"/>
</androidx.constraintlayout.widget.ConstraintLayout>
<TextView android:id="@+id/feedback_issue_section_header" android:visibility="gone" style="@style/res_2131951963_feedback_row_sectionheader"/>
<androidx.cardview.widget.CardView android:id="@+id/feedback_issues_card" android:visibility="gone" style="@style/res_2131951962_feedback_row_sectioncard">
<androidx.recyclerview.widget.RecyclerView android:id="@+id/feedback_issues_recycler" style="@style/res_2131952603_uikit_viewgroup_recyclerview"/>
</androidx.cardview.widget.CardView>
</LinearLayout>