2016-11-16 14:05:23 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-04 21:43:59 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-11-16 14:05:23 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:minWidth="80dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:focusable="true"
|
2021-02-04 21:43:59 +00:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless">
|
2016-11-16 14:05:23 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="@android:dimen/app_icon_size"
|
|
|
|
android:layout_height="@android:dimen/app_icon_size"
|
|
|
|
android:id="@+id/ivShare"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
android:text="Small Text"
|
|
|
|
android:id="@+id/tvShare"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:gravity="top|center_horizontal"
|
|
|
|
android:minLines="2"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:ellipsize="marquee"
|
2021-04-13 10:32:20 +02:00
|
|
|
app:fontFamily="sans-serif-condensed" />
|
2016-11-16 14:05:23 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|