Posts

How to make Web Source code viewer app in Sketchware

Image
Web source code viewer app in sketchware. First you have to make a app with edittext , button , linear , scollview and a textview for showing results. Then create a more block extra which create a AsyncTask with name BackTask. Then add the following code:- } private class BackTask extends AsyncTask<String, Integer, String> { @Override protected void onPreExecute() {} protected String doInBackground(String... address) { String output = ""; try { java.net.URL url = new java.net.URL(address[0]); java.io.BufferedReader in = new java.io.BufferedReader(new java.io.InputStreamReader(url.openStream())); String line; while ((line = in.readLine()) != null) { output += line; } in.close(); } catch (java.net.MalformedURLException e) { output = e.getMessage(); } catch (java.io.IOException e) { output = e.getMessage(); } catch (Exception e) { output = e.toString(); } return output; } protected void onProgressUpdate(Integer... values) {} protected void onPostExecute(String s){ t...

How to make Sketchware project downloading app in Sketchware.

Image
How to make Sketchware Project Sharing app. Sketchware project downloading app is a best way to share your projects & ideas to other peoples and by this we get some earning by AbMob . So lets see how to make it First, you have to download SketchStore app by this link :-  https://www.mediafire.com/file/vy9opae0j8tzend/com.krishtechstudio.sketchstore_#4_1.4.apk/file After downloading search Sketchstore or you will get it at editor's choice section then click on it and download it. After downloading change their specification according your need and sign it.  This is the YouTube tutorial to make Sketchware project sharing app:-

Mpl free rs.200 free money coupon

Image
MPL Offer Alert! Get Rs. 200 FREE . Use code GET200FB to add money in your wallet & start playing. Avail now: https://mpl.onelink.me/6L3j/GmHR Or use my referral code to get free rs.10 Link -  https://referral-mpl-pro.onelink.me/eMpV/e0cf910a Code -  N55BZXP7 Shop Now --------------->♤♤ With Amazon ♡<---------------------------------->♡

How to create push notification block in skechware.

Image
How to create push notification block in sketchware. 1) Create a more block with a variable title and content and a number number . 2) In define more block add add source directly  block and put the following code. Notification.Builder mBuilder = new Notification.Builder(MainActivity.this); mBuilder.setSmallIcon(R.drawable.app_icon); mBuilder.setContentTitle(_title); mBuilder.setContentText(_content); mBuilder.setDefaults( Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE); NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); notificationManager.notify((int)_number, mBuilder.build()); 3) At main.xml add a button1. 4) In button1 on click add the more block like this. 5) add an title, content, and message no in more block. 6) Then save and run the project. For more details watch this video