mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 19:45:05 -05:00
60 lines
2.0 KiB
XML
60 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/unread_widget_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="2dp"
|
|
android:orientation="vertical"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="@drawable/unread_widget_background"
|
|
android:gravity="bottom|center_horizontal">
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:layout_width="@android:dimen/app_icon_size"
|
|
android:layout_height="@android:dimen/app_icon_size"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/icon" />
|
|
|
|
<TextView
|
|
android:id="@+id/unread_count"
|
|
android:visibility="gone"
|
|
android:textSize="10dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right|bottom"
|
|
android:paddingTop="0.5dp"
|
|
android:paddingBottom="0.5dp"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:background="@drawable/unread_count_background"
|
|
android:textColor="#ffffff"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/account_name"
|
|
android:text="@string/app_name"
|
|
android:ellipsize="marquee"
|
|
android:textSize="12dp"
|
|
android:singleLine="true"
|
|
android:paddingTop="1dp"
|
|
android:paddingBottom="1dp"
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="4dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="3dp"
|
|
android:background="@drawable/rounded_corners"
|
|
android:textColor="#ffffff"
|
|
android:shadowColor="#000000"
|
|
android:shadowRadius="2.0"/>
|
|
|
|
</LinearLayout>
|