0

ユーザーがcaseR.id.delete:. 以下に、フラグメントからのコードを添付しました。さまざまな分野の私のコードがさらに必要な場合は、お知らせください。

/**
 * A simple {@link Fragment} subclass.
 */
public class MainActivityListFragment extends ListFragment {
    private ArrayList<Note> notes;
    private NoteAdapter noteAdapter;
    @Override
    public void onActivityCreated(Bundle savedInstanceState){
        super.onActivityCreated(savedInstanceState);

        /*
        String[] values = new String[] {"Android", "iPhone", "Windows", "WebOS", "Android", "iPhone", "Windows", "WebOS" };

        ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, values);

        setListAdapter(adapter);

        */

        NotesDbAdapter dbAdapter = new NotesDbAdapter(getActivity().getBaseContext());
        dbAdapter.open();
        notes = dbAdapter.getAllNotes();
        dbAdapter.close();

        noteAdapter = new NoteAdapter(getActivity(), notes);

        setListAdapter(noteAdapter);

        getListView().setDivider(null);
        getListView().setDividerHeight(0);

        registerForContextMenu(getListView());



    }

    @Override
    public void onListItemClick(ListView l, View v, int position, long id){
        super.onListItemClick(l, v, position, id);

        launchNoteDetailActivity(MainActivity.FragmentToLaunch.VIEW, position);

    }

    @Override
    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo){
        super.onCreateContextMenu(menu, v, menuInfo);

        MenuInflater menuInflater = getActivity().getMenuInflater();
        menuInflater.inflate(R.menu.long_press_menu, menu);
    }

    @Override
    public boolean onContextItemSelected(MenuItem item){

        AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) item.getMenuInfo();
        int rowPosition = info.position;
        Note note = (Note) getListAdapter().getItem(rowPosition);

        switch (item.getItemId()){
            case R.id.edit:
                launchNoteDetailActivity(MainActivity.FragmentToLaunch.EDIT, rowPosition);
                Log.d("menu clicks", "we pressed edit");
                return true;
            case R.id.delete:
                NotesDbAdapter dbAdapter = new NotesDbAdapter(getActivity().getBaseContext());
                dbAdapter.open();
                dbAdapter.deleteNote(note.getId());

                notes.clear();
                notes.addAll(dbAdapter.getAllNotes());
                noteAdapter.notifyDataSetChanged();

                dbAdapter.close();
        }

        return super.onContextItemSelected(item);

    }

    private void launchNoteDetailActivity(MainActivity.FragmentToLaunch ftl, int position){

        Note note = (Note) getListAdapter().getItem(position);

        Intent intent = new Intent(getActivity(), NoteDetailActivity.class);

        intent.putExtra(MainActivity.NOTE_TITLE_EXTRA, note.getTitle());
        intent.putExtra(MainActivity.NOTE_MESSAGE_EXTRA, note.getMessage());
        intent.putExtra(MainActivity.NOTE_CATEGORY_EXTRA, note.getCategory());
        intent.putExtra(MainActivity.NOTE_DATE_EXTRA, note.getDate());
        intent.putExtra(MainActivity.NOTE_ID_EXTRA, note.getId());

        switch(ftl){
            case VIEW:
                intent.putExtra(MainActivity.NOTE_FRAGMENT_TO_LOAD_EXTRA, MainActivity.FragmentToLaunch.VIEW);
                break;
            case EDIT:
                intent.putExtra(MainActivity.NOTE_FRAGMENT_TO_LOAD_EXTRA, MainActivity.FragmentToLaunch.EDIT);
        }

        startActivity(intent);

    }

}
4

2 に答える 2

0
  1. デザインライブラリを追加

       Compile 'com.android.support:design:X.X.X'
    
  2. コード:

       case R.id.delete:
            NotesDbAdapter dbAdapter = new NotesDbAdapter(getActivity().getBaseContext());
            dbAdapter.open();
            dbAdapter.deleteNote(note.getId());
    
            notes.clear();
            notes.addAll(dbAdapter.getAllNotes());
            noteAdapter.notifyDataSetChanged();
    
            dbAdapter.close();
    
            // Show SNACK Bar
            mRoot = (RelativeLayout) view.findViewById(R.id.mainrl);
    
            Snackbar snackbar = Snackbar.make(mRoot , "Item Deleted", Snackbar.LENGTH_LONG);
            snackbar.show();
    

ここでmRootは、フラグメントのメイン ルート レイアウトです。

于 2016-06-07T03:59:36.240 に答える
0

build.gradle に最新のデザイン ライブラリを追加します。

compile 'com.android.support:design:X.X.X' // where X.X.X version

そして、フラグメントで次のようにします。

Snackbar  
    .make(view, "Item deleted",Snackbar.LENGTH_SHORT)
    .show();

パラメータviewは、フラグメントのルート レイアウトである可能性があります。参照が必要なだけです。

詳細については、http://www.materialdoc.com/snackbar/を参照してください。

于 2016-06-07T03:55:00.513 に答える