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"
|
2020-05-24 18:32:32 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
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"
|
2020-05-24 18:32:32 +00:00
|
|
|
android:layout_margin="4dp"
|
|
|
|
app:cardCornerRadius="@dimen/about_card_radius">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-10-02 18:54:39 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2019-03-25 12:43:43 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-11-05 13:53:07 +00:00
|
|
|
|
2020-04-28 09:35:14 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEAccentTextView
|
2019-10-02 18:54:39 +00:00
|
|
|
android:id="@+id/sb1"
|
2020-02-17 15:41:32 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingTop="?attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd"
|
|
|
|
android:paddingBottom="?attr/listPreferredItemPaddingEnd"
|
2019-08-01 14:13:00 +00:00
|
|
|
android:text="@string/credit_title"
|
2019-09-27 15:36:10 +00:00
|
|
|
android:textAppearance="@style/TextViewOverline"
|
2020-04-26 19:08:15 +00:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-10-02 18:54:39 +00:00
|
|
|
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 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"
|
2019-10-02 18:54:39 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-02-26 16:49:24 +00:00
|
|
|
android:overScrollMode="never"
|
2019-10-02 18:54:39 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-05-24 18:32:32 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/sb1"
|
|
|
|
tools:itemCount="3"
|
|
|
|
tools:listitem="@layout/item_contributor" />
|
2019-03-25 12:43:43 +00:00
|
|
|
|
2019-10-02 18:54:39 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2019-03-25 12:43:43 +00:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|