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

39 lines
1.5 KiB
XML
Raw Normal View History

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"
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-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
style="@style/SubTitleTextAppearance"
android:text="@string/credit_title" />
<com.google.android.material.card.MaterialCardView
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
2018-08-30 14:59:30 +05:30
2018-11-05 19:23:07 +05:30
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2018-08-30 14:59:30 +05:30
2018-11-05 19:23:07 +05:30
</com.google.android.material.card.MaterialCardView>
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>