Tag Archives: requestFeature

How to create a SearchView with Filter mode in a ListView in Android?

By | June 1, 2013

Actually this is fairly simple. Android by default provides a SearchView class that has the ability to filter. Just look at the XML layout that I am using in this post. It consists of a SearchView and a ListView. The searchView searches the listview for the matched content. Click on the link below to download… Read More »

How to show progress bar while loading a webpage in android?

By | November 3, 2011

This is a simple example showing how to load a webpage and show a progressBar while the page is loading in android. For that you have to set a chrome client for the webview which implements “onProgressChanged” Here is the layout file. Here is the java file