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

44 lines
2.1 KiB
XML
Raw Normal View History

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"
2020-09-07 09:31:27 +00:00
style="@style/MaterialCardViewStroke"
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
app:cardCornerRadius="@dimen/about_card_radius">
2018-07-27 13:07:33 +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
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"
2021-10-21 17:51:19 +00:00
android:textAppearance="@style/TextViewNormal"
2020-04-26 19:08:15 +00:00
android:textColor="?android:attr/textColorSecondary"
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"
android:layout_height="wrap_content"
android:overScrollMode="never"
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
</androidx.constraintlayout.widget.ConstraintLayout>
2019-03-25 12:43:43 +00:00
</com.google.android.material.card.MaterialCardView>