diff options
Diffstat (limited to 'tutorials/NotepadCodeLab/Notepadv3/res/layout/notes_list.xml')
| -rwxr-xr-x | tutorials/NotepadCodeLab/Notepadv3/res/layout/notes_list.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tutorials/NotepadCodeLab/Notepadv3/res/layout/notes_list.xml b/tutorials/NotepadCodeLab/Notepadv3/res/layout/notes_list.xml new file mode 100755 index 000000000..29ae88631 --- /dev/null +++ b/tutorials/NotepadCodeLab/Notepadv3/res/layout/notes_list.xml @@ -0,0 +1,13 @@ +<?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"> + + <ListView android:id="@+id/android:list" + android:layout_width="wrap_content" + android:layout_height="wrap_content"/> + <TextView android:id="@+id/android:empty" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="No Notes!"/> +</LinearLayout> |
