summaryrefslogtreecommitdiffstats
path: root/tutorials/NotepadCodeLab/Notepadv2/res/layout/notes_list.xml
blob: 29ae88631746a7445b14fd51497febc96306f4e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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>