Back to project page sqlite-analyzer.
The source code is released under:
Apache License
If you think the Android project sqlite-analyzer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example; /* w ww. java2s. c o m*/ import android.app.ListActivity; import android.database.Cursor; import android.os.Bundle; import android.widget.ListAdapter; import android.widget.SimpleCursorAdapter; import static com.example.sqlite.DB.Columns.Employees; public class MainActivity extends ListActivity { private Cursor employees; private MyDatabase db; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); db = new MyDatabase(this); employees = db.getEmployees(); // you would not typically call this on the main thread ListAdapter adapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_2, employees, new String[] {Employees.Firstname, Employees.Lastname}, new int[] {android.R.id.text1, android.R.id.text2}); getListView().setAdapter(adapter); } @Override protected void onDestroy() { super.onDestroy(); employees.close(); db.close(); } }