2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-30 14:59:30 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.cardview.widget.CardView
|
2018-07-27 18:37:33 +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
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:orientation="vertical">
|
|
|
|
|
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/credit_title"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Title"
|
|
|
|
android:textColor="@color/md_white_1000"
|
|
|
|
tools:ignore="MissingPrefix" />
|
|
|
|
|
2018-09-10 01:14:46 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler_view"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_height="wrap_content" />
|
2018-08-30 14:59:30 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.cardview.widget.CardView>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/made_text"
|
|
|
|
android:layout_width="wrap_content"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
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" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|