Back to project page whohasmystuff.
The source code is released under:
GNU General Public License
If you think the Android project whohasmystuff 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 de.freewarepoint.whohasmystuff; /* w w w . j a va 2 s . c om*/ import android.database.Cursor; public class ShowHistory extends AbstractListFragment { @Override protected int getIntentTitle() { return R.string.history_title; } @Override boolean optionsMenuAvailable() { return false; } @Override protected int getEditAction() { return AddObject.ACTION_EDIT_RETURNED; } @Override protected boolean redirectToDefaultListAfterEdit() { return true; } @Override protected Cursor getDisplayedObjects() { return mDbHelper.fetchReturnedObjects(); } @Override protected boolean isMarkAsReturnedAvailable() { return false; } }