2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-03-25 12:43:43 +00:00
|
|
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-30 09:29:30 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-03-25 12:43:43 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:cardBackgroundColor="?colorSurface"
|
2019-03-25 12:43:43 +00:00
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardUseCompatPadding="true">
|
2018-11-05 13:53:07 +00:00
|
|
|
|
2019-10-02 18:54:39 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-03-25 12:43:43 +00:00
|
|
|
android:layout_height="match_parent"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-03-25 12:43:43 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
|
2019-10-02 18:54:39 +00:00
|
|
|
android:id="@+id/sb2"
|
2019-03-25 12:43:43 +00:00
|
|
|
style="@style/SubTitleTextAppearance"
|
2019-08-01 14:13:00 +00:00
|
|
|
android:text="@string/support_development"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:textAppearance="@style/TextViewOverline"
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/appGithub"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:layout_width="0dp"
|
2018-08-30 09:29:30 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/sb2"
|
|
|
|
app:listItemIcon="@drawable/ic_github_circle_white_24dp"
|
|
|
|
app:listItemSummary="@string/git_hub_summary"
|
|
|
|
app:listItemTitle="@string/git_hub" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/appTranslation"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:layout_width="0dp"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/appGithub"
|
|
|
|
app:listItemIcon="@drawable/ic_flag_white_24dp"
|
|
|
|
app:listItemSummary="@string/translate_community"
|
|
|
|
app:listItemTitle="@string/translate" />
|
2019-02-23 20:10:15 +00:00
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
|
2019-10-02 18:54:39 +00:00
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/appRate"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:layout_width="0dp"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/appTranslation"
|
|
|
|
app:listItemIcon="@drawable/ic_star_white_24dp"
|
|
|
|
app:listItemSummary="@string/rate_on_google_play_summary"
|
|
|
|
app:listItemTitle="@string/rate_app" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/donateLink"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:layout_width="0dp"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/appRate"
|
|
|
|
app:listItemIcon="@drawable/ic_card_giftcard_white_24dp"
|
|
|
|
app:listItemSummary="@string/donate_summary"
|
|
|
|
app:listItemTitle="@string/donate" />
|
2019-02-23 20:10:15 +00:00
|
|
|
|
|
|
|
|
2019-10-02 18:54:39 +00:00
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-07-31 11:56:46 +00:00
|
|
|
android:id="@+id/bugReportLink"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:layout_width="0dp"
|
2019-07-31 11:56:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/donateLink"
|
|
|
|
app:listItemIcon="@drawable/ic_bug_report_white_24dp"
|
|
|
|
app:listItemSummary="@string/bug_report_summary"
|
|
|
|
app:listItemTitle="@string/report_bug" />
|
2019-07-31 11:56:46 +00:00
|
|
|
|
|
|
|
|
2019-10-02 18:54:39 +00:00
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/appShare"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:layout_width="0dp"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/bugReportLink"
|
|
|
|
app:listItemIcon="@drawable/ic_share_white_24dp"
|
|
|
|
app:listItemTitle="@string/action_share" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/faqLink"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:layout_width="0dp"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/appShare"
|
|
|
|
app:listItemIcon="@drawable/ic_help_white_24dp"
|
|
|
|
app:listItemTitle="@string/faq" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2019-03-25 12:43:43 +00:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|