2018-10-21 18:29:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/widget"
|
2018-12-06 08:51:27 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-10-21 18:29:28 +00:00
|
|
|
android:background="@color/colorWidgetBackground"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="6dp">
|
|
|
|
|
|
|
|
<ImageView
|
2018-12-09 07:48:57 +00:00
|
|
|
android:layout_width="24dp"
|
2018-12-06 08:51:27 +00:00
|
|
|
android:layout_height="0dp"
|
2018-10-21 18:29:28 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
2018-12-09 07:48:57 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:src="@drawable/baseline_mail_24"
|
|
|
|
android:tint="@color/colorWidgetForeground" />
|
2018-10-21 18:29:28 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvCount"
|
|
|
|
android:layout_width="wrap_content"
|
2018-12-06 08:51:27 +00:00
|
|
|
android:layout_height="0dp"
|
2018-10-21 18:29:28 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
2018-12-06 08:51:27 +00:00
|
|
|
android:layout_weight="1"
|
2018-10-21 18:29:28 +00:00
|
|
|
android:text="?"
|
2018-12-09 07:48:57 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
2018-10-21 18:29:28 +00:00
|
|
|
android:textColor="@color/colorWidgetForeground"
|
2018-12-06 08:51:27 +00:00
|
|
|
android:textSize="18dp"
|
2018-10-21 18:29:28 +00:00
|
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|