RetroMusicPlayer/app/src/main/res/layout/card_other.xml

112 lines
4.6 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2019-03-25 18:13:43 +05:30
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 18:37:33 +05:30
xmlns:tools="http://schemas.android.com/tools"
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
2019-03-25 18:13:43 +05:30
android:layout_height="wrap_content"
app:cardCornerRadius="8dp"
app:cardUseCompatPadding="true">
<LinearLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2019-03-25 18:13:43 +05:30
android:layout_height="match_parent"
android:orientation="vertical">
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
style="@style/SubTitleTextAppearance"
2019-08-01 19:43:00 +05:30
android:text="@string/others"
android:textAppearance="@style/TextViewOverline" />
2018-07-27 18:37:33 +05:30
<LinearLayout
android:id="@+id/changelog"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/rectSelector"
android:gravity="center_vertical"
android:minHeight="@dimen/md_listitem_height"
2018-07-27 18:37:33 +05:30
android:orientation="vertical"
android:paddingStart="12dp"
android:paddingTop="8dp"
android:paddingEnd="12dp"
android:paddingBottom="8dp"
tools:ignore="PrivateResource">
2018-08-30 14:59:30 +05:30
2018-07-27 18:37:33 +05:30
2019-09-27 21:06:10 +05:30
<com.google.android.material.textview.MaterialTextView
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-05-21 01:08:43 +05:30
android:text="@string/changelog"
android:textAppearance="@style/TextViewSubtitle1" />
2019-09-27 21:06:10 +05:30
<code.name.monkey.retromusic.views.BaselineGridTextView
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/changelog_summary"
2019-09-27 21:06:10 +05:30
app:lineHeightHint="24sp" />
</LinearLayout>
<LinearLayout
android:id="@+id/openSource"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/rectSelector"
android:gravity="center_vertical"
android:minHeight="@dimen/md_listitem_height"
android:orientation="vertical"
android:paddingStart="12dp"
android:paddingTop="8dp"
android:paddingEnd="12dp"
android:paddingBottom="8dp"
tools:ignore="PrivateResource">
2019-09-27 21:06:10 +05:30
<com.google.android.material.textview.MaterialTextView
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-05-21 01:08:43 +05:30
android:text="@string/pref_title_open_source_licences"
android:textAppearance="@style/TextViewSubtitle1" />
2018-11-05 19:23:07 +05:30
2019-09-27 21:06:10 +05:30
<code.name.monkey.retromusic.views.BaselineGridTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/pref_summary_open_source_licences"
2019-09-27 21:06:10 +05:30
app:lineHeightHint="24sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/rectSelector"
android:gravity="center_vertical"
android:minHeight="@dimen/md_listitem_height"
android:orientation="vertical"
android:paddingStart="12dp"
android:paddingTop="8dp"
android:paddingEnd="12dp"
android:paddingBottom="8dp"
tools:ignore="PrivateResource">
2019-09-27 21:06:10 +05:30
<com.google.android.material.textview.MaterialTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-05-21 01:08:43 +05:30
android:text="@string/version"
android:textAppearance="@style/TextViewSubtitle1" />
2019-09-27 21:06:10 +05:30
<code.name.monkey.retromusic.views.BaselineGridTextView
android:id="@+id/appVersion"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="0.0.0"
2019-09-27 21:06:10 +05:30
app:lineHeightHint="24sp" />
2018-11-05 19:23:07 +05:30
</LinearLayout>
2019-05-21 01:08:43 +05:30
2019-09-27 21:06:10 +05:30
<com.google.android.material.textview.MaterialTextView
2019-04-05 16:15:09 +05:30
android:id="@+id/madeText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:padding="16dp"
android:text="@string/made_with_love"
android:textAppearance="@style/TextViewBody1" />
</LinearLayout>
2019-03-25 18:13:43 +05:30
</com.google.android.material.card.MaterialCardView>