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
|
|
|
android:layout_width="match_parent"
|
2019-03-25 12:43:43 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:cardCornerRadius="8dp"
|
2019-05-20 19:38:43 +00:00
|
|
|
app:cardElevation="4dp"
|
2019-03-25 12:43:43 +00:00
|
|
|
app:cardPreventCornerOverlap="false"
|
|
|
|
app:cardUseCompatPadding="true">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-03-25 12:43:43 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-11-05 13:53:07 +00:00
|
|
|
|
2019-03-25 12:43:43 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
|
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/credit_title" />
|
2018-08-30 09:29:30 +00:00
|
|
|
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-03-25 12:43:43 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-04-05 10:45:09 +00:00
|
|
|
|
2019-03-25 12:43:43 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|