active questions tagged listactivity - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T20:43:25Zhttp://stackoverflow.com/feeds/tag/listactivityhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1887719/listactivity-alter-data-from-sqllite-before-putting-it-into-the-row0ListActivity: alter data from SQLLite before putting it into the rowMaurits de Boer2009-12-11T12:19:22Z2009-12-11T15:31:50Z
<p>This is my ListActivity:</p>
<pre><code>@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_list);
mDbHelper = new MyDbAdapter(this);
mDbHelper.open();
fillData();
registerForContextMenu(getListView());
}
private void fillData() {
// Get all of the rows from the database and create the item list
Cursor c = mDbHelper.fetchAllTransactions();
startManagingCursor(c);
// Create an array to specify the fields we want to display in the list
String[] from = new String[]{MyDbAdapter.KEY_DATE, MyDbAdapter.KEY_NAME};
// and an array of the fields we want to bind those fields to
int[] to = new int[]{R.id.row_date, R.id.row_name};
// Now create a simple cursor adapter and set it to display
setListAdapter(new SimpleCursorAdapter(this, R.layout.my_list_row, c, from, to));
}
</code></pre>
<p>and this is my row layout:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/row_date" android:layout_width="wrap_content" android:layout_height="fill_parent" />
<TextView android:id="@+id/row_name" android:layout_width="wrap_content" android:layout_height="fill_parent" />
</LinearLayout>
</code></pre>
<p>The date is actually stored as an int in the SQLLite database, and thus it displays as an integer. </p>
<p>Does anyone know a way to create a date from the int so it doesn't display as 1216544611 (or whatever) but as "12/11/2009 11:32"?</p>
http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android1Custom list clicking with checkboxes in AndroidTom Martin2009-05-21T21:43:30Z2009-11-28T14:05:07Z
<p>I've populated a ListActivity from a cursor using SimpleCursorAdapter that starts another activity when one of the list items have been clicked. I'm also using ViewBinder to do some custom transformation of the data.</p>
<p>I want to add a checkbox to each row in the list so I've changed the view and added a CheckBox with gravity right.</p>
<p>Adding the checkbox has removed the ability to click on the items. The onListItemClick method I was overriding in ListActivity is no longer called when you press on a list item. Removing the checkbox fixes this. Why is this?</p>
<p>Also, how can I set up the list so that it continues to perform my required functionality if the main part of the list item is clicked but have additional functionality when the checkbox in the item is checked? Will setting a onCheckedChangedListener work or is the same view instance reused for each item in the list?</p>
http://stackoverflow.com/questions/1538796/update-android-listactivity-when-list-data-changes0update Android ListActivity when list data changesSponge2009-10-08T16:05:56Z2009-10-08T17:35:02Z
<p>i want to know how to refresh the ListActivity when i change/add data to the list wich is dispayed.</p>
<p>i first thougt the ListAdapter would know when the list is changed but when i add elements to the list there is no update, only when i close the activity and reopen it i see the changes.
so i searched for any update() refesh() or something like that method but there is none.
so it seem i didnt get the concept, can someone help me please?</p>