ArabWare
2.71K subscribers
664 photos
25 videos
169 files
267 links
Download Telegram
New code assist update
Now layout editor is improved
Create your xml layout by codes then edit it by that editor to code fast


Also library manager is more easier, no need to edit gradle file manually to add libraries

CodeAssist is on play store!

What is Codeassist?
It is an open-source and powerful Android IDE to make apps with java and kotlin support.

https://play.google.com/store/apps/details?id=com.tyron.code

#CodeAssist
1👍1
I need one subscriber please...
I will upload amazing project if you do this :)
احتاج مشترك واحد و سانشر مشروع رائع اذا تفعلون هذا
👍3
Thanks 1000 subscribers
I will upload this soon for sketchware pro
شكرا الف مشترك سارفع هذا المشروع لسكيتشوير برو قريبا

هذا رابط اذا تريد تجرب تحويل المشروع في سكيتشوير برو
This link if you can't wait and wanna to do it yourself from github in sketchware pro
https://github.com/xmuSistone/ViewpagerTransition
👍2🔥21
How to show links in textview (sketchware)


Use in oncreate


textview1.setClickable(true);
android.text.util.Linkify.addLinks(textview1, android.text.util.Linkify.ALL);
textview1.setLinkTextColor(Color.parseColor("#009688"));
textview1.setLinksClickable(true);



- Change textview1 with yours
- Change color of links with hex
👍3🔥3
NewProject5 v1.0 (com.stone.transition, 1) 2022-1-01T004025.swb
3.4 MB
ViewPagerTransition project

Official github link
https://github.com/xmuSistone/ViewpagerTransition
👍4🔥2🎉2🤩2
الفيديو يعرض حاليا!
كل عام و انتم بخير
The video is live currently!
Happy new year
https://youtu.be/OJhqhY6Fs-Y
🔥43
Media is too big
VIEW IN TELEGRAM
How to solve viewpager bug on latest sketchware release
كيفية حل مشكلة viewpager في سكيتشوير برو اخر اصدار
🔥71👍1
Forwarded from ghost
Code Go Pro.apk
20.8 MB
Fix application bug
The golden key to your applications
Fix JavaScript execution error
Google Naranji Material Graphics
And more features .......
Making apk
1:44:41
Made by Visual Studio
(V)
9👎4👍3
Join sketchware pro best community @sketchwarepro
2🤩2
Hi all ,
You should know this channel has many admins manage it

So not all posts are posted by the main admin .👍❤️

Happy New Year .
4👎2👍1🔥1
السلام عليكم
الادمن أمير عزت( مالك هذه القناة) سوف يغيب لسبعة أشهر .
السبب : تبقى سبعة أشهر و يأتي امتحان اخير السنة الذي يحدد مصيري و يجب احصل معدل جيد


القناة اكيد ستموت تفاعلها لكن ربما الادمنز الآخرون يشاركون مشاريعهم معكم .


اتمنى التوفيق للكل 👋🥀

Hi everyone , Ameer Ezit ( the owner of arabware) has left programming from now for 7 months . I want to study hard because after 7 months is the final exams date :) and exams which will choose my future job .

Good bye everyone :)


I think others admins will help you until me return again .


Sorry for bad English but I wrote this in less than 2 minutes
17👎2
Those who are new to sketchware development and are unable to handle crashes of sketchware can use this stable version of sketchware pro


Features
- aab+apk build supported
- max stable


📂 Size 95 mb


🔗 https://www.mediafire.com/file/mzprqwgmfgdqqas/Sketchware_Pro_aab.apk/file


And those who have some experience with sketchware pro use sketchware pro new versions for updated features
10👍2🤔1
Generate Random Password
//Below Code In OnCreate

}
private static String generateRandomPassword()
{
String upperCaseChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
String lowerCaseChars = "abcdefghijklmnopqrstuvwxyz";

String numberChars = "0123456789";

String specialChars = "!@#$%^&*()_-+=<>?/{}~|";

int max_length = 10;

String allowedChars = upperCaseChars +lowerCaseChars+numberChars+specialChars;
Random rn = new Random();

StringBuilder sb = new StringBuilder(max_length);

sb.append(allowedChars.charAt(rn.nextInt(allowedChars.length()-1)));

for(int i=sb.length();i < max_length;++i){ sb.append(allowedChars.charAt(rn.nextInt(allowedChars.length())));
}

return sb.toString();
}
{


//Below Code In On Button Click
// Change textview1 with yours

String pass = generateRandomPassword();
textview1.setText(pass);
👍6🔥32