2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 18:37:33 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-23 15:34:43 +05:30
|
|
|
app:cardCornerRadius="8dp"
|
2018-08-30 14:59:30 +05:30
|
|
|
app:cardPreventCornerOverlap="false"
|
|
|
|
app:cardUseCompatPadding="true">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<LinearLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="8dp">
|
|
|
|
|
2018-09-23 15:34:43 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-08-30 14:59:30 +05:30
|
|
|
fontPath="@string/circular_std_black"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="12dp"
|
|
|
|
android:text="@string/others"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Title"
|
|
|
|
android:textColor="@color/md_white_1000"
|
|
|
|
tools:ignore="MissingPrefix" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<LinearLayout
|
2018-08-30 14:59:30 +05:30
|
|
|
android:id="@+id/changelog"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
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"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:paddingStart="12dp"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:paddingTop="8dp"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:paddingEnd="12dp"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:paddingBottom="8dp"
|
|
|
|
tools:ignore="PrivateResource">
|
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-09-23 15:34:43 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:text="@string/changelog"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
|
2018-09-23 15:34:43 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:alpha="0.85"
|
|
|
|
android:text="@string/changelog_summary"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
</LinearLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/open_source"
|
|
|
|
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"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:paddingStart="12dp"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:paddingTop="8dp"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:paddingEnd="12dp"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:paddingBottom="8dp"
|
|
|
|
tools:ignore="PrivateResource">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
|
2018-09-23 15:34:43 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:text="@string/pref_title_open_source_licences"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-09-23 15:34:43 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:alpha="0.85"
|
|
|
|
android:text="@string/pref_summary_open_source_licences"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
</LinearLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<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"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:paddingStart="12dp"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:paddingTop="8dp"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:paddingEnd="12dp"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:paddingBottom="8dp"
|
|
|
|
tools:ignore="PrivateResource">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
|
2018-09-23 15:34:43 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/version"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-09-23 15:34:43 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-08-30 14:59:30 +05:30
|
|
|
android:id="@+id/app_version"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:alpha="0.85"
|
|
|
|
android:text="0.0.0"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
2018-08-30 14:59:30 +05:30
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|