mirror of https://github.com/tasks/tasks
New notification popup custom dialog thing. Allows Astrid to provide a reminder message as well as arbitrary number of options.
parent
160bfc7e15
commit
555d990bdd
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="5dip"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView android:id="@+id/message"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="fill_parent"
|
||||
android:paddingBottom="5dip" />
|
||||
|
||||
<View
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="2dip"
|
||||
android:background="#888888"
|
||||
/>
|
||||
|
||||
<ListView android:id="@+id/items"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="fill_parent"
|
||||
android:textSize="12sp" />
|
||||
|
||||
</LinearLayout>
|
||||
Loading…
Reference in New Issue