Posts

GTA VC Myraid Islands

Yo maaan!!! It's me, Harshith Royal, back again with a new update of GTA VC, so click  here  to download the setup.exe file of this game. Thank you.😊

Compound Interest Calculator

Compound Interest Calculator Yo guys! It's me Harshith Royal back again with an interesting topic. But this time it's not a tutorial, instead it's just a download. It is one of my best and useful apps ever created by me. So I want to share it with all of you so that it may help you by calculating and also me by giving me a name as it's creator. Soooo. Click here  to download the app. A very big Thanks to the people who downloaded and also thanks for visiting my site. Bye.

Swipe to refresh in webview

Hi guys, My name's Harshith Royal and today I'm presenting you the code for SWIPE TO REFRESH IN WEBVIEW   so, let's start In OnCreate, add this code by asd block final android.support.v4.widget.SwipeRefreshLayout sr = new android.support.v4.widget.SwipeRefreshLayout(this); sr.setLayoutParams(new LinearLayout.LayoutParams(android.widget.LinearLayout.LayoutParams.MATCH_PARENT, android.widget.LinearLayout.LayoutParams.MATCH_PARENT)); linear1.addView(sr); final WebView wb = (WebView)findViewById(R.id.webview1); wb.getSettings().setJavaScriptEnabled(true); linear1.removeView(wb); linear1.post(new Runnable() { @Override public void run() { sr.addView(wb); } }); wb.setWebViewClient(new WebViewClient() { public void onPageFinished(WebView view, String url) { sr.setRefreshing(false); }}); wb.loadUrl("http://www.google.com"); sr.setOnRefreshListener( new android.support.v4.widget.SwipeRefreshLayout.OnRefreshListener() { @Override public void onRefresh() { wb....