PlayerAndroid/app/src/main/res/layout/card_social.xml

196 lines
8.4 KiB
XML
Raw Normal View History

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"
2019-05-20 19:38:43 +00:00
app:cardElevation="4dp"
2019-03-25 12:43:43 +00:00
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">
2018-11-05 13:53:07 +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"
android:orientation="vertical">
2019-03-25 12:43:43 +00:00
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
style="@style/SubTitleTextAppearance"
android:text="@string/social" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<LinearLayout
android:id="@+id/pinterestLink"
2018-08-30 09:29:30 +00:00
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">
<code.name.monkey.retromusic.views.IconImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
app:srcCompat="@drawable/ic_pinterest_white_24dp"
app:tint="@color/md_white_1000" />
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"
android:orientation="vertical"
android:paddingStart="12dp"
android:paddingTop="8dp"
android:paddingEnd="12dp"
android:paddingBottom="8dp">
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2019-03-25 12:43:43 +00:00
style="@style/TextAppearance.MaterialComponents.Subtitle1"
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"
app:fontFamily="@font/circular_std_medium" />
2019-01-02 03:55:55 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2019-03-25 12:43:43 +00:00
style="@style/TextAppearance.MaterialComponents.Body2"
2019-01-02 03:55:55 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="0.85"
android:text="@string/pinterest_page_summary" />
2019-01-02 03:55:55 +00:00
</LinearLayout>
</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">
<code.name.monkey.retromusic.views.IconImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
app:srcCompat="@drawable/ic_instagram_white_24dp"
app:tint="@color/md_white_1000" />
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"
android:orientation="vertical"
android:paddingStart="12dp"
android:paddingTop="8dp"
android:paddingEnd="12dp"
android:paddingBottom="8dp">
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2019-03-25 12:43:43 +00:00
style="@style/TextAppearance.MaterialComponents.Subtitle1"
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"
app:fontFamily="@font/circular_std_medium" />
2018-07-27 13:07:33 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2019-03-25 12:43:43 +00:00
style="@style/TextAppearance.MaterialComponents.Body2"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="0.85"
android:text="@string/instagram_page_summary" />
2018-07-27 13:07:33 +00:00
</LinearLayout>
</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">
<code.name.monkey.retromusic.views.IconImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
app:srcCompat="@drawable/ic_twitter_white_24dp"
app:tint="@color/md_white_1000" />
2018-07-27 13:07:33 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingStart="12dp"
android:paddingTop="8dp"
android:paddingEnd="12dp"
android:paddingBottom="8dp">
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2019-03-25 12:43:43 +00:00
style="@style/TextAppearance.MaterialComponents.Subtitle1"
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"
app:fontFamily="@font/circular_std_medium" />
2018-07-27 13:07:33 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2019-03-25 12:43:43 +00:00
style="@style/TextAppearance.MaterialComponents.Body2"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="0.85"
android:text="@string/twitter_page_summary" />
2018-07-27 13:07:33 +00:00
</LinearLayout>
</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">
<code.name.monkey.retromusic.views.IconImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
app:srcCompat="@drawable/ic_telegram_white"
app:tint="@color/md_white_1000" />
2018-07-27 13:07:33 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingStart="12dp"
android:paddingTop="8dp"
android:paddingEnd="12dp"
android:paddingBottom="8dp">
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2019-03-25 12:43:43 +00:00
style="@style/TextAppearance.MaterialComponents.Subtitle1"
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"
app:fontFamily="@font/circular_std_medium" />
2018-07-27 13:07:33 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2019-03-25 12:43:43 +00:00
style="@style/TextAppearance.MaterialComponents.Body2"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="0.85"
android:text="@string/telegram_group_summary" />
2018-07-27 13:07:33 +00:00
</LinearLayout>
</LinearLayout>
</LinearLayout>
2019-03-25 12:43:43 +00:00
</com.google.android.material.card.MaterialCardView>