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"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2019-03-25 12:43:43 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardUseCompatPadding="true">
|
2018-11-05 13:53:07 +00:00
|
|
|
|
2019-02-23 20:10:15 +00:00
|
|
|
<LinearLayout
|
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
|
|
|
|
style="@style/SubTitleTextAppearance"
|
2019-08-01 14:13:00 +00:00
|
|
|
android:text="@string/social"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:textAppearance="@style/TextViewOverline" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
<LinearLayout
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/pinterestLink"
|
2018-08-30 09:29:30 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:background="?attr/rectSelector"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:minHeight="@dimen/md_listitem_height"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:ignore="PrivateResource">
|
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_pinterest_white_24dp"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:tint="?colorOnSurface" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-01-02 03:55:55 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="8dp">
|
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-01-02 03:55:55 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-05-20 19:38:43 +00:00
|
|
|
android:text="@string/pinterest_page"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:textAppearance="@style/TextViewSubtitle1" />
|
2019-01-02 03:55:55 +00:00
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
2019-01-02 03:55:55 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:text="@string/pinterest_page_summary"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:lineHeightHint="24sp" />
|
2019-01-02 03:55:55 +00:00
|
|
|
</LinearLayout>
|
2019-02-23 20:10:15 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/instagramLink"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/rectSelector"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:minHeight="@dimen/md_listitem_height"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:ignore="PrivateResource">
|
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_instagram_white_24dp"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:tint="?colorOnSurface" />
|
2019-01-02 03:55:55 +00:00
|
|
|
|
2018-07-27 13:07:33 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="8dp">
|
|
|
|
|
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-05-20 19:38:43 +00:00
|
|
|
android:text="@string/instagram_page"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:textAppearance="@style/TextViewSubtitle1" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:text="@string/instagram_page_summary"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:lineHeightHint="24sp" />
|
2018-07-27 13:07:33 +00:00
|
|
|
</LinearLayout>
|
2019-02-23 20:10:15 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/twitterLink"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/rectSelector"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:minHeight="@dimen/md_listitem_height"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:ignore="PrivateResource">
|
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_twitter_white_24dp"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:tint="?colorOnSurface" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="8dp">
|
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-05-20 19:38:43 +00:00
|
|
|
android:text="@string/twitter_page"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:textAppearance="@style/TextViewSubtitle1" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:text="@string/twitter_page_summary"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:lineHeightHint="24sp" />
|
2018-07-27 13:07:33 +00:00
|
|
|
</LinearLayout>
|
2019-02-23 20:10:15 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/telegramLink"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/rectSelector"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:minHeight="@dimen/md_listitem_height"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:ignore="PrivateResource">
|
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_telegram_white"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:tint="?colorOnSurface" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="8dp">
|
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-05-20 19:38:43 +00:00
|
|
|
android:text="@string/telegram_group"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:textAppearance="@style/TextViewSubtitle1" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:text="@string/telegram_group_summary"
|
2019-09-27 15:36:10 +00:00
|
|
|
app:lineHeightHint="24sp" />
|
2018-07-27 13:07:33 +00:00
|
|
|
</LinearLayout>
|
2019-02-23 20:10:15 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2019-03-25 12:43:43 +00:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|