Back to project page PocketReckoner.
The source code is released under:
MIT License
If you think the Android project PocketReckoner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** The MIT License (MIT)//from w w w . j a va 2s. c om Copyright (c) 2014 Oleg Kosmakov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package org.kosmakoff.pocketreckoner.ui; import org.kosmakoff.pocketreckoner.R; import org.kosmakoff.pocketreckoner.db.DatabaseSchema; import org.kosmakoff.pocketreckoner.db.PeopleRepository; import org.kosmakoff.pocketreckoner.util.PersonEditor; import android.app.Activity; import android.app.ListFragment; import android.app.LoaderManager; import android.content.Context; import android.content.CursorLoader; import android.content.Intent; import android.content.Loader; import android.database.Cursor; import android.os.Bundle; import android.util.Log; import android.view.ContextMenu; import android.view.LayoutInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.Button; import android.widget.SimpleCursorAdapter; public class PeopleFragment extends ListFragment implements OnItemClickListener, LoaderManager.LoaderCallbacks<Cursor> { final static int LOADER_PEOPLE = 1; final static int MENU_PERSON_DELETE = 1; final static String LOG_TAG = "PEOPLE_FRAGMENT"; private PeopleRepository peopleRepository; private PersonEditor personEditor; SimpleCursorAdapter mPeopleAdapter; public PeopleFragment() { } @Override public void onAttach(Activity activity) { super.onAttach(activity); try { personEditor = (PersonEditor) activity; } catch (ClassCastException castException) { // the activity cannot edit people. but we know it can ;) } } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { peopleRepository = new PeopleRepository(getActivity()); View peopleFragment = inflater.inflate(R.layout.fragment_people, null); Button btnAddNewPerson = (Button) peopleFragment.findViewById(R.id.btn_add_person); btnAddNewPerson.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { personEditor.startEditingPerson(0); } }); return peopleFragment; } @Override public void onActivityCreated(Bundle savedInstanceState) { Log.d(LOG_TAG, "Activity created"); super.onActivityCreated(savedInstanceState); String[] from = new String[] { DatabaseSchema.PersonEntry.COLUMN_NAME, DatabaseSchema.PersonEntry.COLUMN_PHONE, DatabaseSchema.PersonEntry.COLUMN_EMAIL }; int[] to = new int[]{ R.id.text_name, R.id.text_phone, R.id.text_email }; mPeopleAdapter = new SimpleCursorAdapter(getActivity(), R.layout.list_item_person, null, from ,to, 0); setListAdapter(mPeopleAdapter); getListView().setOnItemClickListener(this); registerForContextMenu(getListView()); getLoaderManager().initLoader(LOADER_PEOPLE, null, this); } @Override public void onDestroyView() { super.onDestroyView(); peopleRepository.close(); } @Override public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) { if (personEditor == null) return; personEditor.startEditingPerson(id); } @Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) { menu.clearHeader(); menu.clear(); AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo; Log.d(LOG_TAG, "Create Context Menu for ID = " + info.id + ", position = " + info.position); // add DELETE menu item long personId = info.id; MenuItem menuItem = menu.add(0, MENU_PERSON_DELETE, 0, R.string.delete); Intent menuItemIntent = new Intent(); menuItemIntent.putExtra("personId", personId); menuItem.setIntent(menuItemIntent); } @Override public boolean onContextItemSelected(MenuItem item) { switch (item.getItemId()) { case MENU_PERSON_DELETE: long personId = item.getIntent().getLongExtra("personId", 0); if (personId != 0) personEditor.deletePerson(personId); refreshPeopleList(); return true; } return false; } private void refreshPeopleList() { getLoaderManager().getLoader(LOADER_PEOPLE).forceLoad(); } @Override public Loader<Cursor> onCreateLoader(int id, Bundle args) { switch (id) { case LOADER_PEOPLE: return new PeopleCursorLoader(getActivity(), peopleRepository); } throw new IllegalArgumentException("Unsupported loader"); } @Override public void onLoadFinished(Loader<Cursor> loader, Cursor cursor) { mPeopleAdapter.swapCursor(cursor); } @Override public void onLoaderReset(Loader<Cursor> loader) { } static class PeopleCursorLoader extends CursorLoader { private PeopleRepository peopleRepository; public PeopleCursorLoader(Context context, PeopleRepository peopleRepository) { super(context); this.peopleRepository = peopleRepository; } @Override public Cursor loadInBackground() { return peopleRepository.fetchAllRecords(); } } }