SS Screen Recorder project for Sketchware Pro
-> I am not creator of the project.
-> I tested it on Android 14,13 and works.
Screenshots -> https://web.sketchub.in/p/26430
👉 @sketchlearn
-> I am not creator of the project.
-> I tested it on Android 14,13 and works.
Screenshots -> https://web.sketchub.in/p/26430
👉 @sketchlearn
❤3
SS Recorder.swb
2.7 MB
SS Screen Recorder project for Sketchware Pro
❤️ Don't forget to give like on Sketchub -> https://web.sketchub.in/p/26430
👉 @sketchlearn
❤️ Don't forget to give like on Sketchub -> https://web.sketchub.in/p/26430
👉 @sketchlearn
❤13👍3👎1
Forwarded from Android Developers
Here Is A Collection Of Android Projects By Android Developers Telegram Channel.
❤1👍1
package ninjacoder.ghostide.androidtools.r8.android
import android.app.WallpaperManager
import android.content.Context
import android.graphics.Bitmap
import android.graphics.Canvas
import android.graphics.drawable.Drawable
import android.os.Environment
import java.io.File
import java.io.FileOutputStream
import java.io.IOException
object BackgroundUtil {
fun saveSystemWallpaper(context: Context) {
val wallpaperManager = WallpaperManager.getInstance(context)
// دریافت Drawable پسزمینه سیستمی
val wallpaperDrawable: Drawable = wallpaperManager.drawable
// اگر پسزمینه وجود داشته باشد
wallpaperDrawable?.let {
// تبدیل Drawable به Bitmap
val wallpaperBitmap = Bitmap.createBitmap(wallpaperDrawable.intrinsicWidth,
wallpaperDrawable.intrinsicHeight, Bitmap.Config.ARGB_8888)
// رسم Drawable بر روی Bitmap
wallpaperDrawable.bounds.set(0, 0, wallpaperBitmap.width, wallpaperBitmap.height)
val canvas = Canvas(wallpaperBitmap)
wallpaperDrawable.draw(canvas)
// ذخیره پسزمینه در مسیر دلخواه
saveBitmapToFile(context, wallpaperBitmap)
}
}
private fun saveBitmapToFile(context: Context, bitmap: Bitmap) {
// مسیر ذخیره فایل
val directoryPath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).absolutePath
val fileName = "system_wallpaper.png"
val file = File(directoryPath, fileName)
var fos: FileOutputStream? = null
try {
fos = FileOutputStream(file)
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos)
fos.flush()
fos.close()
} catch (e: IOException) {
e.printStackTrace()
} finally {
try {
fos?.close()
} catch (e: IOException) {
e.printStackTrace()
}
}
}
}
With this code, you can get the system background and save it in the download path
❤5👍3
Forwarded from Android Developers
Text Analyzer Sketchware Pro Project
👍2
Forwarded from Android Developers
More Features Will Be Added In Upcoming Updates. For Now Enjoy This One.
❤2
Forwarded from Android Developers
Text Analyzer Sketchware Pro Project Version 2.0
🆕 What's New 🆕
👉 Fixed Issue With The Paragraph Counter Algorithm.
👉 Added Advanced Text Analysis Like
* Whitespaces Count
* Character Without Whitespaces Count
* Bytes Count
* Uppercases Count
👉 @androiddevstutorials
🆕 What's New 🆕
👉 Fixed Issue With The Paragraph Counter Algorithm.
👉 Added Advanced Text Analysis Like
* Whitespaces Count
* Character Without Whitespaces Count
* Bytes Count
* Uppercases Count
👉 @androiddevstutorials
👍1
10 AI APPS YOU NEED TO TRY!!
VIDEO -> https://youtu.be/huXkZLya_rc?si=BeKRLjQodRj4Lnrt
VIDEO -> https://youtu.be/huXkZLya_rc?si=BeKRLjQodRj4Lnrt
YouTube
10 Apps - YOU NEED TO TRY!!!
Don't forget to secure your privacy with Surfshark! Enter coupon code HAYLS for 4 months EXTRA at https://surfshark.deals/HAYLS
🟢 Animated Wallpapers
https://haylsworld.com/collections/callscreens
🟢 Phone Wallpapers
https://haylsworld.com/collections/wallpaper…
🟢 Animated Wallpapers
https://haylsworld.com/collections/callscreens
🟢 Phone Wallpapers
https://haylsworld.com/collections/wallpaper…
❤4👍1
Boot Completed project for Sketchware Pro
-> Easy to edit (max api 30)
-> If you want to upgrade API of the project so change/edit some codes but if yu success it works on 34 api too.
👉 @sketchlearn
-> Easy to edit (max api 30)
-> If you want to upgrade API of the project so change/edit some codes but if yu success it works on 34 api too.
👉 @sketchlearn
👎3👍2❤1
Forwarded from Ghost IDE (Ghost)
VectorDrawableCreator.java
13.8 KB
I did not develop this code, but I modified it. With this code, you can display vector images in an ImageView. You can also add new elements in line 31.
Material You shapes Project For sketchware pro
You can get it now
https://web.sketchub.in/p/26599
follow @sketchlearn for more
You can get it now
https://web.sketchub.in/p/26599
.sketchware/data/project_id(exemple 1265)/files/resources/drawable
follow @sketchlearn for more
👍5❤2
Ping tester Redesigned
This project of @Bob2dev redesigned by @skinvent
link to project
https://web.sketchub.in/p/26626
Follow @sketchlearn for more
This project of @Bob2dev redesigned by @skinvent
link to project
https://web.sketchub.in/p/26626
Follow @sketchlearn for more
Finally We Got verified on sketchub platform thank you all for being supportive ❤️
Follow @sketchlearn for more good projects
Follow @sketchlearn for more good projects
❤9👍1