mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
** Copyright (c) 2012 Todoroo Inc
|
|
**
|
|
** See the file "LICENSE" for the full license governing this code.
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/reminder_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginTop="5dip"
|
|
android:layout_marginRight="5dip"
|
|
android:layout_marginBottom="20dip"
|
|
android:layout_marginLeft="5dip">
|
|
|
|
<TextView
|
|
android:id="@+id/update_title"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="20sp"
|
|
android:textColor="@android:color/white"
|
|
android:text="@string/UpS_updates_title"
|
|
android:layout_weight="1"/>
|
|
<ImageView
|
|
android:id="@+id/dismiss"
|
|
android:layout_width="25dip"
|
|
android:layout_height="25dip"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/ic_menu_close"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/update_message_speech_bubble"/>
|
|
|
|
</LinearLayout> |