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"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-07-27 13:07:33 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-08-30 09:29:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-03-25 12:43:43 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardPreventCornerOverlap="false"
|
|
|
|
app:cardUseCompatPadding="true">
|
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"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
|
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/others" />
|
2018-08-30 09:29:30 +00:00
|
|
|
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2019-02-23 20:10:15 +00:00
|
|
|
android:id="@+id/changelog"
|
2018-07-27 13:07:33 +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:gravity="center_vertical"
|
|
|
|
android:minHeight="@dimen/md_listitem_height"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:orientation="vertical"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
tools:ignore="PrivateResource">
|
2018-08-30 09:29:30 +00:00
|
|
|
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-02-23 20:10:15 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
|
|
|
style="@style/TextAppearance.MaterialComponents.Subtitle1"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-04-05 10:45:09 +00:00
|
|
|
app:fontFamily="@font/circular_std_medium"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:text="@string/changelog" />
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
|
|
style="@style/TextAppearance.MaterialComponents.Body2"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:alpha="0.85"
|
|
|
|
android:text="@string/changelog_summary" />
|
|
|
|
</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">
|
|
|
|
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
|
|
|
style="@style/TextAppearance.MaterialComponents.Subtitle1"
|
2018-08-30 09:29:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-04-05 10:45:09 +00:00
|
|
|
app:fontFamily="@font/circular_std_medium"
|
2018-08-30 09:29:30 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:text="@string/pref_title_open_source_licences" />
|
2018-11-05 13:53:07 +00:00
|
|
|
|
2019-02-23 20:10:15 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
|
|
style="@style/TextAppearance.MaterialComponents.Body2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:alpha="0.85"
|
|
|
|
android:text="@string/pref_summary_open_source_licences" />
|
|
|
|
</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">
|
|
|
|
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
|
|
|
style="@style/TextAppearance.MaterialComponents.Subtitle1"
|
|
|
|
android:layout_width="match_parent"
|
2019-04-05 10:45:09 +00:00
|
|
|
app:fontFamily="@font/circular_std_medium"
|
2019-02-23 20:10:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/version" />
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
|
|
android:id="@+id/appVersion"
|
|
|
|
style="@style/TextAppearance.MaterialComponents.Body2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:alpha="0.85"
|
|
|
|
android:text="0.0.0" />
|
2018-11-05 13:53:07 +00:00
|
|
|
</LinearLayout>
|
2019-04-05 10:45:09 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
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/TextAppearance.Widget.AppCompat.Toolbar.Title"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="12sp" />
|
2019-02-23 20:10:15 +00:00
|
|
|
</LinearLayout>
|
2019-03-25 12:43:43 +00:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|