2014-10-16 20:06:56 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/widget_main"
|
2015-02-12 21:15:03 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:padding="@dimen/widget_margin" >
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2015-02-12 19:19:17 +00:00
|
|
|
android:background="@drawable/appwidget_dark_bg_clickable"
|
2015-02-12 21:15:03 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2015-02-12 19:19:17 +00:00
|
|
|
android:padding="8dp"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
2015-02-12 21:15:03 +00:00
|
|
|
android:layout_width="36dp"
|
|
|
|
android:layout_height="36dp"
|
|
|
|
android:layout_weight="1"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
2015-02-09 13:51:12 +00:00
|
|
|
android:src="@drawable/ic_launcher" />
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
<TextView
|
2015-02-13 11:09:26 +00:00
|
|
|
android:id="@+id/widget_unread_counter"
|
2015-02-12 21:15:03 +00:00
|
|
|
android:layout_weight="0"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-02-12 21:15:03 +00:00
|
|
|
android:layout_gravity="bottom|center"
|
2015-02-12 19:19:17 +00:00
|
|
|
android:gravity="center_horizontal"
|
2015-02-13 11:09:26 +00:00
|
|
|
android:text=""
|
2014-10-16 20:06:56 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2015-02-12 19:19:17 +00:00
|
|
|
android:textColor="@android:color/primary_text_dark"
|
|
|
|
android:textSize="13sp" />
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2015-02-12 19:19:17 +00:00
|
|
|
</FrameLayout>
|