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"
|
|
|
|
app:cardUseCompatPadding="true">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-10-03 00:24:39 +05:30
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2019-03-25 18:13:43 +05:30
|
|
|
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
|
2019-10-03 00:24:39 +05:30
|
|
|
android:id="@+id/sb1"
|
2019-03-25 18:13:43 +05:30
|
|
|
style="@style/SubTitleTextAppearance"
|
2019-08-01 19:43:00 +05:30
|
|
|
android:text="@string/credit_title"
|
2019-09-27 21:06:10 +05:30
|
|
|
android:textAppearance="@style/TextViewOverline"
|
2019-10-03 00:24:39 +05:30
|
|
|
android:textColor="?colorAccent"
|
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
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"
|
2019-10-03 00:24:39 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/sb1" />
|
2019-03-25 18:13:43 +05:30
|
|
|
|
2019-10-03 00:24:39 +05:30
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2019-03-25 18:13:43 +05:30
|
|
|
</com.google.android.material.card.MaterialCardView>
|