mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-18 16:15:20 +01:00
112 lines
No EOL
4.6 KiB
XML
112 lines
No EOL
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardUseCompatPadding="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
|
|
style="@style/SubTitleTextAppearance"
|
|
android:text="@string/others"
|
|
android:textAppearance="@style/TextViewOverline" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/changelog"
|
|
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">
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/changelog"
|
|
android:textAppearance="@style/TextViewSubtitle1" />
|
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/changelog_summary"
|
|
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">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/pref_title_open_source_licences"
|
|
android:textAppearance="@style/TextViewSubtitle1" />
|
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/pref_summary_open_source_licences"
|
|
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">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/version"
|
|
android:textAppearance="@style/TextViewSubtitle1" />
|
|
|
|
<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"
|
|
app:lineHeightHint="24sp" />
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
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>
|
|
</com.google.android.material.card.MaterialCardView> |