Download Code Breaker game Sketchware project

This Sketchware project is a game in which the user has to break the 4-color code using logic and deduction. Objective Available Colors ➡️ Colors can repeat in the code. How to Play Understanding the Result ✅ Correct Position 🔁 Correct Color (Wrong Position) Example Secret Code: 🔴 🟢 🔵 🟡 Your Guess: 🔴 🔵 🟣 🟢 Result: Winning … Read more

Downloading Bitmap image or image file

This post provides codes for downloading Bitmap image to Downloads folder and for copying image file from Assets or Cache to Downloads folder. 1. Download Bitmap image to Downloads folder Create a new java file ImageDownloader.java and put following codes in it. Add your package name at the top. To use it in Activity, if … Read more

Download private chat Sketchware project

This Sketchware project DMChat is a private chat project based on Firebase real-time database. Key Features & Capabilities of this project 1. Use of FirebaseAuth to register and login using email. 2. A page for browsing all users. Click any one to chat with them. 3. Private chat with verified users. 4. A page to … Read more

Download pdf reader Sketchware project

This Android PDF Reader project utilizes Mozilla’s PDF.js library within a WebView to provide a robust, feature-rich PDF viewing experience. Key Features & Capabilities of this project 1. Universal PDF File Support 2. Advanced Text Operations 3. Enhanced Navigation 4. Viewing & Display Features 5. Custom Error Handling 6. Document Management Download project (zipped .swb … Read more

Sketchware projects: ExoPlayer, All apps, List to Pdf

Download Sketchware pro projects 1. ExoPlayer This project uses the ExoPlayer library. It can play videos from links. Supported video formats include.mp4, .m3u8, .mpd, etc. The project has features of changing video quality, video speed, and toggle fullscreen. Download ExoPlayer project by clicking the link below. Unzip the file, and then open the .swb file … Read more

Animated Vector Drawable trimPathEnd example

This example shows a trimPathEnd animation while drawing a ✔️ Check mark. It will create a simple check mark path that draws itself smoothly using trimPathEnd. 1. Create the vector drawable (res/drawable/check_mark.xml) This vector drawable path starts from (x, y) point (2, 12), draws line to point (9, 19), and draws another line to point … Read more

Object Animator and Animated Vector Drawable

ObjectAnimator It provides support for animating properties on target objects. It can be used to animate Views. Animations supported are rotation, translation, scale, and alpha. Following example shows application of rotation animation to an ImageView imageview2. 1. Create rotation ObjectAnimator file (res/animator/rotate_anim.xml) It is rotation animation from 0 degree to 360 degree in 3 seconds, … Read more

Tween animation examples

Introduction Tween Animations in android are dependent on android.view.animation and they can be used to animate Views in android The animation can be applied to any kind of View (e.g. ImageView, TextView, etc.). The XML files for the animation are placed in res/anim/ folder. The root tags for the XML file include: Examples of animation files 1. … Read more