Search in sources :

Example 1 with NotesAdapter

use of org.wordpress.android.ui.notifications.adapters.NotesAdapter in project WordPress-Android by wordpress-mobile.

the class NotificationsListFragment method getNotesAdapter.

private NotesAdapter getNotesAdapter() {
    if (mNotesAdapter == null) {
        mNotesAdapter = new NotesAdapter(getActivity(), this, null);
        mNotesAdapter.setOnNoteClickListener(mOnNoteClickListener);
    }
    return mNotesAdapter;
}
Also used : NotesAdapter(org.wordpress.android.ui.notifications.adapters.NotesAdapter)

Aggregations

NotesAdapter (org.wordpress.android.ui.notifications.adapters.NotesAdapter)1