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

39 lines
1.5 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-30 09:29:30 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-30 09:29:30 +00:00
android:layout_height="match_parent"
android:orientation="vertical">
2018-07-27 13:07:33 +00:00
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
style="@style/SubTitleTextAppearance"
android:text="@string/credit_title" />
<com.google.android.material.card.MaterialCardView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-09-23 10:04:43 +00:00
app:cardCornerRadius="8dp"
2018-08-30 09:29:30 +00:00
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
2018-11-05 13:53:07 +00:00
<androidx.recyclerview.widget.RecyclerView
2018-12-06 10:23:03 +00:00
android:id="@+id/recyclerView"
2018-11-05 13:53:07 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2018-08-30 09:29:30 +00:00
2018-11-05 13:53:07 +00:00
</com.google.android.material.card.MaterialCardView>
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatTextView
2018-12-06 10:23:03 +00:00
android:id="@+id/madeText"
2018-08-30 09:29:30 +00:00
android:layout_width="wrap_content"
2018-07-27 13:07:33 +00:00
android:layout_height="wrap_content"
2018-08-30 09:29:30 +00:00
android:layout_gravity="center"
android:gravity="center"
android:padding="16dp"
android:text="@string/made_with_love"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
android:textColor="?android:attr/textColorSecondary"
android:textSize="12sp" />
2018-07-27 13:07:33 +00:00
</LinearLayout>