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

28 lines
1,015 B
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2019-03-25 18:13:43 +05:30
<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 18:37:33 +05:30
android:layout_width="match_parent"
2019-03-25 18:13:43 +05:30
android:layout_height="wrap_content"
app:cardCornerRadius="8dp"
2019-05-21 01:08:43 +05:30
app:cardElevation="4dp"
2019-03-25 18:13:43 +05:30
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">
2018-07-27 18:37:33 +05:30
2019-03-25 18:13:43 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2018-11-05 19:23:07 +05:30
2019-03-25 18:13:43 +05:30
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
style="@style/SubTitleTextAppearance"
android:text="@string/credit_title" />
2018-08-30 14:59:30 +05:30
2018-07-27 18:37:33 +05:30
2019-03-25 18:13:43 +05:30
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2019-04-05 16:15:09 +05:30
2019-03-25 18:13:43 +05:30
</LinearLayout>
</com.google.android.material.card.MaterialCardView>