Android examples for android.webkit:WebView
has WebView Feature
import android.content.Context; import android.content.pm.PackageManager; public class Main{ private static boolean hasWebViewFeature(Context context) { // Query the system property that determins if there is a functional WebView on the device. PackageManager pm = context.getPackageManager(); return pm.hasSystemFeature(PackageManager.FEATURE_WEBVIEW); }/*www .j a va2 s.com*/ }