swh:1:snp:9e7dcf2adb3c1d0abb5a8d2cdbeb07b5ba70940b
Raw File
Tip revision: c5598e980a0da49f97c407490d4ce148e40f88bc authored by Hervé Renault on 17 October 2015, 13:36:44 UTC
Touching the balloon now opens the notes folder, which is more consistent.
Tip revision: c5598e9
list.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <TextView 
  	android:id="@+id/head_note_list"
  	android:layout_width="fill_parent"
  	android:layout_height="wrap_content"
  	android:textSize="25dp"
  	android:background="#33FFFFFF"
  	android:text="Notes"
  	android:gravity="center" />
    <ListView android:id="@+id/android:list"
          	android:layout_width="fill_parent"
        	android:layout_height="wrap_content" />
  	<TextView android:id="@+id/android:empty"
          	android:layout_width="fill_parent"
        	android:layout_height="wrap_content"
    		android:layout_margin="20dp"
    		android:textSize="25dp"
        	android:text="@string/no_note" />
</LinearLayout>
back to top