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-07-27 13:07:33 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-09-07 09:31:27 +00:00
|
|
|
style="@style/MaterialCardViewStroke"
|
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"
|
2020-05-24 18:32:32 +00:00
|
|
|
app:cardCornerRadius="@dimen/about_card_radius">
|
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">
|
|
|
|
|
2020-04-28 09:35:14 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
|
2019-10-02 18:54:39 +00:00
|
|
|
android:id="@+id/sb3"
|
2020-02-17 15:41:32 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingTop="?attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd"
|
|
|
|
android:paddingBottom="?attr/listPreferredItemPaddingEnd"
|
2019-08-01 14:13:00 +00:00
|
|
|
android:text="@string/social"
|
2021-10-21 17:51:19 +00:00
|
|
|
android:textAppearance="@style/TextViewNormal"
|
2020-04-28 09:35:14 +00:00
|
|
|
android:textColor="?colorAccent"
|
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_toTopOf="parent" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2021-09-08 18:30:20 +00:00
|
|
|
android:id="@+id/websiteLink"
|
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/sb3"
|
2021-09-08 18:30:20 +00:00
|
|
|
app:listItemIcon="@drawable/ic_baseline"
|
2021-09-16 12:59:31 +00:00
|
|
|
app:listItemSummary="@string/website_summary"
|
|
|
|
app:listItemTitle="@string/website" />
|
2021-09-08 18:30:20 +00:00
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
|
|
|
android:id="@+id/pinterestLink"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/websiteLink"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:listItemIcon="@drawable/ic_pinterest"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:listItemSummary="@string/pinterest_page_summary"
|
|
|
|
app:listItemTitle="@string/pinterest_page" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/instagramLink"
|
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/pinterestLink"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:listItemIcon="@drawable/ic_instagram"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:listItemSummary="@string/instagram_page_summary"
|
|
|
|
app:listItemTitle="@string/instagram_page" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-02-23 20:10:15 +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/twitterLink"
|
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/instagramLink"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:listItemIcon="@drawable/ic_twitter"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:listItemSummary="@string/twitter_page_summary"
|
|
|
|
app:listItemTitle="@string/twitter_page" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.ListItemView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/telegramLink"
|
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/twitterLink"
|
|
|
|
app:listItemIcon="@drawable/ic_telegram_white"
|
|
|
|
app:listItemSummary="@string/telegram_group_summary"
|
|
|
|
app:listItemTitle="@string/telegram_group" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2019-03-25 12:43:43 +00:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|