List of usage examples for android.widget SearchView.OnQueryTextListener interface-usage
From source file com.icareyou.food.ReportViewFragment.java
public class ReportViewFragment extends Fragment implements SearchView.OnQueryTextListener { protected static final String TAG = "nevin"; // Private member for UI private ListView mlvProduct;
From source file de.janrenz.app.mediathek.SearchActivity.java
public class SearchActivity extends org.holoeverywhere.app.Activity implements SearchView.OnQueryTextListener, LoaderManager.LoaderCallbacks<Cursor> { private SearchView searchView = null; Menu mMenu = null;
From source file sk.mpage.androidsample.recyclerviewcontentprovider.RecyclerListFragment.java
public class RecyclerListFragment extends Fragment implements UndoButtonListener, InfiniteScrollListener, SearchView.OnQueryTextListener { private ItemTouchHelper mItemTouchHelper; private FloatingActionButton myFab; private RecyclerListAdapter adapter;
From source file com.jpuyo.barcelonaplaces.app.ui.activity.main.PlacesListFragment.java
/** * Fragment with 2 parts: * -A places list * -A Search view where user can filter data */ public class PlacesListFragment extends Fragment
From source file com.klinker.android.theme_spotlight.activity.SpotlightActivity.java
public class SpotlightActivity extends AuthActivity implements SearchView.OnQueryTextListener { private static final String TAG = "SpotlightActivity"; // fragment positions in the drawer private static final int EVOLVE_FRAGMENT = 0;
From source file com.github.yuukis.businessmap.app.ContactsListFragment.java
public class ContactsListFragment extends ListFragment implements SearchView.OnQueryTextListener { private ContactsAdapter mContactsAdapter; private SearchView mSearchView; @Override
From source file org.strongswan.android.ui.SelectedApplicationsListFragment.java
public class SelectedApplicationsListFragment extends ListFragment implements LoaderManager.LoaderCallbacks<Pair<List<SelectedApplicationEntry>, List<String>>>, SearchView.OnQueryTextListener { private SelectedApplicationsAdapter mAdapter; private SortedSet<String> mSelection;
From source file com.paranoid.gerrit.ChangeListFragment.java
public class ChangeListFragment extends Fragment implements SearchView.OnQueryTextListener { private static final String TAG = ChangeListFragment.class.getSimpleName(); /** * The {@link android.support.v4.view.PagerAdapter} that will provide * fragments for each of the sections.
From source file com.paranoid.gerrit.ProjectsList.java
public class ProjectsList extends Activity implements LoaderManager.LoaderCallbacks<Cursor>, SearchView.OnQueryTextListener { ExpandableListView mProjectsListView; ProjectsTable mProjectsTable; ProjectsListAdapter mListAdapter; private DefaultGerritReceivers receivers;
From source file com.chatwork.android.realmcw.activities.RoomListActivity.java
public class RoomListActivity extends ActionBarActivity implements SwipeRefreshLayout.OnRefreshListener, SearchView.OnQueryTextListener { private static final String TAG = RoomListActivity.class.getSimpleName(); private static final String GET_ON_LOAD = "GET_ON_LOAD"; private static final int SEND_MESSAGE_REQUEST = 200; @InjectView(R.id.room_list_layout)