2018-09-23 15:34:43 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-11-05 19:23:07 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-09-23 15:34:43 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:cardCornerRadius="6dp"
|
2018-11-05 19:23:07 +05:30
|
|
|
app:cardElevation="4dp"
|
2018-09-23 15:34:43 +05:30
|
|
|
app:cardUseCompatPadding="true">
|
|
|
|
|
2019-09-02 20:21:53 +05:30
|
|
|
<LinearLayout
|
2018-09-23 15:34:43 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/image"
|
|
|
|
android:layout_width="104dp"
|
|
|
|
android:layout_height="128dp"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:scaleType="centerCrop" />
|
2018-09-23 15:34:43 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/palette_color_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-09-23 15:34:43 +05:30
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2019-09-02 20:21:53 +05:30
|
|
|
android:textAppearance="@style/TextViewNormal"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:padding="8dp"
|
|
|
|
tools:text="@string/home" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
2018-11-05 19:23:07 +05:30
|
|
|
</com.google.android.material.card.MaterialCardView>
|