Lighting Knowledge
Lighting Knowledge
  • 21
  • 53 399
Make your own Drawing App in sketchware|Lighting Knowledge|
Hello friends today I am going to make a drawing app in sketchware. Follow the steps. Any query please comment.
Code download link👇👇👇
drive.google.com/file/d/1qQQGveb213Qiw6h5UFHHF-9nlpxGU5W5/view?usp=drivesdk
Thanks for watching 🙏🙏🙏
Переглядів: 847

Відео

Design your buttons in sketchware|Lighting Knowledge|
Переглядів 5364 роки тому
Hello friends today I am going to show you how to design your buttons in sketchware. Used Code link👇👇 drive.google.com/file/d/1hwDVUjnMYOqmLf4aULui98dG4Zodx-tc/view?usp=drivesdk Please subscribe my channel. Thanks for watching 🙏🙏🙏
Drag your views on the screen using sketchware|Lighting Knowledge|
Переглядів 2294 роки тому
Hello friends today I am going to make a app which have a text widget which can be dragged on the screen. Used Code 👇👇 widgets.setOnTouchListener(new OnTouchListener() { PointF DownPT = new PointF(); PointF StartPT = new PointF(); @Override public boolean onTouch(View v, MotionEvent event) { int eid = event.getAction(); switch (eid) { case MotionEvent.ACTION_MOVE:PointF mv = new PointF(event.ge...
Make boxloading animation for your splash screen in sketchware| lighting knowledge|
Переглядів 2644 роки тому
Hello friends today I am going to make a Box loading animation view in sketchware. Follow the steps for less errors. Codes links 👇👇 Boxloader library code 👇 drive.google.com/file/d/1eaGFPoyMLc4mRWWnwqw_bQTIDTIgByiF/view?usp=drivesdk Boxloader view codes 👇 drive.google.com/file/d/1eo0cDk72-qQJmgNvixyWJsrRKdUSwqxn/view?usp=drivesdk Thanks for watching 🙏🙏🙏
Make a Popup Menu in Sketchware|Lighting Knowledge|
Переглядів 2,8 тис.4 роки тому
Hello friends today I am going to make a Popup Menu in Sketchware. Used Code 👇👇 PopupMenu popup = new PopupMenu(MainActivity.this, button1); Menu menu = popup.getMenu(); menu.add("Menu"); menu.add("Settings"); menu.add("About us"); menu.add("Exit"); popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() { public boolean onMenuItemClick(MenuItem item) { switch (item.getTitle()....
Enable Finger zoom in and zoom out in webview in sketchware|Lighting Knowledge|
Переглядів 1,7 тис.4 роки тому
Hello friends today I am going to show you how to enable Finger zoom in sketchware. Used Code 👇👇 webview1.getSettings().setBuiltInZoomControls(true);webview1.getSettings().setDisplayZoomControls(false); #Lighting Knowledge #Skechware Thanks for watching 🙏🙏
Add prizes in the spinwheel in Sketchware and make your earnings app| Lighting Knowledge|
Переглядів 5 тис.4 роки тому
Hello friends today I am going to show you how to add prizes in the spinwheel in Sketchware. How to make spinwheel in Sketchware 👇👇 ua-cam.com/video/MJQeY5yjvg4/v-deo.html Thanks for watching 🙏🙏🙏
How to make a spinwheel in sketchware| Lighting Knowledge|
Переглядів 5 тис.4 роки тому
Hello friends today I am going to show you how to make a spinwheel in Sketchware. Link of image used 👇👇 www.google.com/search?q=spin wheel images&client=ms-android-oppo&prmd=isnv&sxsrf=ALeKk00BElf-CoE5NhzsIy3MvcNvWA0Vhw:1591165793614&source=lnms&tbm=isch&sa=X&ved=2ahUKEwjQsaC_guXpAhVTfX0KHY7lDkQQ_AUoAXoECA4QAQ&cshid=1591165828958&biw=360&bih=628&dpr=2#imgrc=lYLfp5bLo6B-TM Thanks for watching 🙏🙏🙏
Make a text to Pdf and image to Pdf converter in sketchware| Lighting Knowledge|
Переглядів 2,2 тис.4 роки тому
Hello friends today I am going to make a text and images to pdf converter app in sketchware. Link of used code 👇👇👇 drive.google.com/file/d/1Z85NI9Wl1L9kJ8ZSRzB4W6HP2zs8Abtj/view?usp=drivesdk Thanks for watching 🙏🙏🙏
|Part-2|Make a notepad and html editor in sketchware Part-2| Lighting Knowledge|
Переглядів 5464 роки тому
Hello friends today I am going to make a notepad and html editor in sketchware. This is part-2 of the video. Part-1 is here 👉👉 ua-cam.com/video/gspK8MIIrA4/v-deo.html Thanks for watching 🙏🙏🙏
|Part-1| Make a notepad and html editor in sketchware |Lighting Knowledge|
Переглядів 8094 роки тому
Hello friends today I am going to make a note pad and html editor app in sketchware. This is part 1 of the video. Part 2 is here👉👉ua-cam.com/video/FU41PYwgkdY/v-deo.html Thanks for watching
Make a stopwatch app in sketchware| No more block|Lighting Knowledge|
Переглядів 3554 роки тому
Hello friends today I am going to make a stopwatch app in sketchware. Follow the steps. Thanks for watching 🙏🙏🙏
Design your linears in your app for good looking app layout in sketchware| Lighting Knowledge|
Переглядів 1854 роки тому
Hello friends today I am going to show you how to design your linear to make your app attractive and beautiful. Code 👇👇👇👇 android.graphics.drawable.GradientDrawable gd = new android.graphics.drawable.GradientDrawable(); gd.setColor(Color.parseColor(_color1)); gd.setCornerRadius((int) _radius); gd.setStroke((int) _stroke, Color.parseColor(_color2)); _view.setBackground(gd); Thanks for watching
Make a simple flashlight app in sketchware| Lighting Knowledge|
Переглядів 8304 роки тому
Hello friends today I am going to make a simple flashlight torch app in sketchware. Code 👇👇👇 android.hardware.camera2.CameraManager cameraManager = (android.hardware.camera2.CameraManager) getSystemService(Context.CAMERA_SERVICE); try { String cameraId = cameraManager.getCameraIdList()[0]; cameraManager.setTorchMode(cameraId, true); } catch (android.hardware.camera2.CameraAccessException e) { }...
Make a simple video player in sketchware| Play video from path|Lighting Knowledge|
Переглядів 3,8 тис.4 роки тому
Hello friends today I am going to make a simple video player app in sketchware. Code 👇👇👇 final VideoView vd = new VideoView(MainActivity.this); vd.setLayoutParams(new LinearLayout.LayoutParams(android.widget.LinearLayout.LayoutParams.MATCH_PARENT, android.widget.LinearLayout.LayoutParams.MATCH_PARENT)); linear1.addView(vd); vd.setVideoURI(Uri.parse(_path)); vd.setMediaController(new MediaContro...
Create a circular linear in your app in sketchware| Lighting Knowledge|
Переглядів 7704 роки тому
Create a circular linear in your app in sketchware| Lighting Knowledge|
Enable downloading in your web browser/web view in sketchware| Lighting Knowledge|
Переглядів 10 тис.4 роки тому
Enable downloading in your web browser/web view in sketchware| Lighting Knowledge|
Make an app to search any text to Google in sketchware| Lighting Knowledge|
Переглядів 1,1 тис.4 роки тому
Make an app to search any text to Google in sketchware| Lighting Knowledge|
How to set desktop mode in your web browser in sketchware| sketchware project| Lighting knowledge|
Переглядів 7 тис.4 роки тому
How to set desktop mode in your web browser in sketchware| sketchware project| Lighting knowledge|
Make a mcq or quiz test app in sketchware| Lighting Knowledge|
Переглядів 9 тис.4 роки тому
Make a mcq or quiz test app in sketchware| Lighting Knowledge|
How to create a mini web browser in sketchware| Lighting Knowledge| Learn sketchware tutorials
Переглядів 3324 роки тому
How to create a mini web browser in sketchware| Lighting Knowledge| Learn sketchware tutorials

КОМЕНТАРІ

  • @Kuysvinecent
    @Kuysvinecent 22 дні тому

    I really need this huhu

  • @s-1i-youtube
    @s-1i-youtube 2 місяці тому

    Bro its DIAMETER NOT STROKE WIDTH

  • @sagitterre
    @sagitterre 3 місяці тому

    Thanks for code !

  • @KaihanMohammadiafg
    @KaihanMohammadiafg 3 місяці тому

    not Copy Bro

  • @warchateck
    @warchateck 8 місяців тому

    ❤️ 🙏 Good

  • @BGsJesusSongs
    @BGsJesusSongs Рік тому

    Textview ?

  • @HashirP
    @HashirP Рік тому

    Hello mates I'm trying to create a song downloader app with a webview, downloader code given below ``` webview1.setDownloadListener(new DownloadListener() { public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) { DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); String cookies = CookieManager.getInstance().getCookie(url); request.addRequestHeader("cookie", cookies); request.addRequestHeader("User-Agent", userAgent); request.setDescription("Downloading file..."); request.setTitle(URLUtil.guessFileName(url, contentDisposition, mimetype)); request.allowScanningByMediaScanner(); request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED); java.io.File aatv = new java.io.File(Environment.getExternalStorageDirectory().getPath() + "/Webview/Download");if(!aatv.exists()){if (!aatv.mkdirs()){ Log.e("TravellerLog ::","Problem creating Image folder");}} request.setDestinationInExternalPublicDir("/Webview/Download", URLUtil.guessFileName(url, contentDisposition, mimetype)); DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE); manager.enqueue(request); showMessage("Downloading File...."); BroadcastReceiver onComplete = new BroadcastReceiver() { public void onReceive(Context ctxt, Intent intent) { showMessage("Download Complete!"); unregisterReceiver(this); }}; registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE)); ``` I can download normal files,but I can't download songs from my react app, because it creating a blob file when downloading Can anyone help me

  • @wowimamatvey
    @wowimamatvey Рік тому

    Don't know how to use spinner💀☠️

  • @ntlsstudios
    @ntlsstudios Рік тому

    What I send my ponts for firebase?

  • @bstechno003
    @bstechno003 2 роки тому

    Coin counting sistam lgana bhi btaiye bro...

  • @noormohammoa234
    @noormohammoa234 2 роки тому

    Next video Munos

  • @mattia097
    @mattia097 2 роки тому

    THANK YOU SO MUCH!!! Your tutorial is perfect!

  • @jurgenvollweiler7330
    @jurgenvollweiler7330 2 роки тому

    Where do I get the add source directly block new sketch pro mod does not generate it and it is a more block so advicee would be appreciated

  • @gnat31
    @gnat31 2 роки тому

    Great video👏👏, how can i make the mcq not a part of my app and make it be downloadable inapp then use offline

  • @jurgenvollweiler7330
    @jurgenvollweiler7330 2 роки тому

    Hi thank you for the tutorial it's highly appreciated I would like to know where can I get the more blocks for this project?

  • @eshananimationworld2086
    @eshananimationworld2086 2 роки тому

    Lol I made custom paint with different colors lol also with different color small target circle lol

  • @ABC-zv1sd
    @ABC-zv1sd 2 роки тому

    Add Score system..

  • @ABC-zv1sd
    @ABC-zv1sd 2 роки тому

    why image and text sperate separate? Make a pdf maker that can convert both text and image to one pdf? ie hybrid

  • @user-kz7my4ku5c
    @user-kz7my4ku5c 2 роки тому

    Android 11 api 30 then not working

  • @carvan3211
    @carvan3211 2 роки тому

    Extract first page of pdf in an image view

  • @carvan3211
    @carvan3211 2 роки тому

    How to make pdf to image converter

  • @كتفممارك
    @كتفممارك 2 роки тому

    Not working

  • @OI-zt8ww
    @OI-zt8ww 2 роки тому

    For example, I want the flashlight to turn blue, can you show it?

  • @rajamoulikankati4988
    @rajamoulikankati4988 2 роки тому

    Thank Bro

  • @Monstereye-rj1ct
    @Monstereye-rj1ct 2 роки тому

    this is cool thank bro😉😉

  • @islam_in_the_west
    @islam_in_the_west 2 роки тому

    Hello, how to use this in fragment activity?

  • @onlineobservations
    @onlineobservations 2 роки тому

    Thank You Very Much ! It's Work

  • @faltu3489
    @faltu3489 2 роки тому

    Can i play video from url??

  • @viewer75599
    @viewer75599 3 роки тому

    Make a tutorial for enable upload in webview.

  • @FerdySahputera
    @FerdySahputera 3 роки тому

    thank work sir

  • @DEUS913
    @DEUS913 3 роки тому

    Você tem

  • @jattxharkirat6113
    @jattxharkirat6113 3 роки тому

    Free fire music

  • @fujelraza489
    @fujelraza489 3 роки тому

    Worked fine but file ia downloading in php format

  • @peterryu2205
    @peterryu2205 3 роки тому

    This is what i'm looking for, thanks

  • @Sketchwareapk
    @Sketchwareapk 3 роки тому

    Sketchware

  • @The-Dev-Ninja
    @The-Dev-Ninja 3 роки тому

    why you close your channel

    • @lucasdasilva2829
      @lucasdasilva2829 2 місяці тому

      Stop humiliating people

    • @s-1i-youtube
      @s-1i-youtube 2 місяці тому

      ​@@lucasdasilva2829 bro💀 he asked why he closed his channel are you stupid

  • @The-Dev-Ninja
    @The-Dev-Ninja 3 роки тому

    thank you

  • @kelvinfernandez4830
    @kelvinfernandez4830 3 роки тому

    BRO 360° HOW TO MAKE

  • @Mahisree135
    @Mahisree135 3 роки тому

    How to download skechware

  • @gamerz6462
    @gamerz6462 3 роки тому

    Fuck what the fuck that double start

  • @mohamed1nounou806
    @mohamed1nounou806 3 роки тому

    A code or block to change the background color of the web view, thank you

  • @CyBertzyYT
    @CyBertzyYT 3 роки тому

    Your The Best , All i want is in you ! Thank You So Much Bro !!

  • @veerpatil9039
    @veerpatil9039 3 роки тому

    Trt to search with Special symbols like #, &. It will not work

  • @leafydiamonds
    @leafydiamonds 3 роки тому

    5:36 once i saw it i lost my hope to make that

  • @CargoBlitz
    @CargoBlitz 3 роки тому

    Thanks

  • @PETERFHW
    @PETERFHW 3 роки тому

    How do I make it switch activity after done

  • @whiteflower8197
    @whiteflower8197 3 роки тому

    ကျေးဇူးတင်ပါတယ်ဆရာ🙏

  • @TechFitterBangla
    @TechFitterBangla 3 роки тому

    Topic ways kasa kara?

  • @amiraliazimi6091
    @amiraliazimi6091 3 роки тому

    Hello, can you send the code link?

  • @lightingknowledge3782
    @lightingknowledge3782 3 роки тому

    Code link:docs.google.com/document/d/1zg8AG1aKvNYOFu0f6Hyv2BTGbGRRhqp90Jtw3My-NeY/edit?usp=drivesdk