First Create Database Helper : now in your first layout : res/main.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" > <ListView android:layout_height="fill_parent" android:id="@+id/@android:list" android:layout_width="fill_parent"></ListView> </LinearLayout> second layout for insert Values: res/inslayout.xml <?xml version="1.0" encoding="UTF-8"?> <RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/a...
Advance Android Examples