AndLua+ بالعربي
Photo
طريقة عمل ازرار بالشكل هذا ..
متطلبات -
import "android.graphics.drawable.GradientDrawable"
--------------------------------------------------
الوظائف -
function CircleButton(view,LD1,LD2,LD3,LD4,LD5,LD6)
drawable = GradientDrawable()
drawable.setShape(GradientDrawable.RECTANGLE)
drawable.setCornerRadii({LD3, LD3, LD4, LD4, LD5, LD5, LD6, LD6})
drawable.setColor(LD1)
drawable.setStroke(6, LD2)
view.setBackgroundDrawable(drawable)
end
--------------------------------------------------
تنفيذ الوظائف -
CircleButton(YOUR_BUTTON_ID,0x00894BF2,0xff894BF2,10,10,10,10)
YOUR_BUTTON_ID = Replace With Selected Button id
0x00894BF2 = Color Background
0xff894BF2 = Color Stroke
10,10,10,10 = Radius 4 side
طبعاً تقدر تعدل براحتك ع كل شي ..
@lutfilahdz
متطلبات -
import "android.graphics.drawable.GradientDrawable"
--------------------------------------------------
الوظائف -
function CircleButton(view,LD1,LD2,LD3,LD4,LD5,LD6)
drawable = GradientDrawable()
drawable.setShape(GradientDrawable.RECTANGLE)
drawable.setCornerRadii({LD3, LD3, LD4, LD4, LD5, LD5, LD6, LD6})
drawable.setColor(LD1)
drawable.setStroke(6, LD2)
view.setBackgroundDrawable(drawable)
end
--------------------------------------------------
تنفيذ الوظائف -
CircleButton(YOUR_BUTTON_ID,0x00894BF2,0xff894BF2,10,10,10,10)
YOUR_BUTTON_ID = Replace With Selected Button id
0x00894BF2 = Color Background
0xff894BF2 = Color Stroke
10,10,10,10 = Radius 4 side
طبعاً تقدر تعدل براحتك ع كل شي ..
@lutfilahdz
AndLua+ بالعربي
AndroLua.alp
سورس برنامج androLua ..
مثل AndLua بالضبط ، اذا فيه شخص حاب يطوره او يعدل عليه او حتى يعربه ..
مثل AndLua بالضبط ، اذا فيه شخص حاب يطوره او يعدل عليه او حتى يعربه ..
سورسات انجكترات بتصاميم خياليه ..
و القادم أجمل بأذن الله 🌹.
الي عنده مشكله او يحتاج شي يتفضل .
@Ar_andlua
استمتعوا ..
و القادم أجمل بأذن الله 🌹.
الي عنده مشكله او يحتاج شي يتفضل .
@Ar_andlua
استمتعوا ..
CZ TextEditor.apk
1.5 MB
افضل نوت باد استخدمته ، خفيفه و مريحه و ماتعكس الكلام العربي اذا تداخل مع اكواد او شي ..
Forwarded from Deleted Account
This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from AndLua+ Indonesia
MAIN FUNCTION
FILE ON WEBSITE
@lutfilahdz
import "http"
import "android.content.Context"
import "android.content.Intent"
import "android.net.Uri"
function LDupdate(currentver,link)
url=link
Http.get(url,nil,"utf8",nil,function(code,content)
if code==200 then
upver=tonumber(content:match("【version】(.-)【version】"))
if upver > currentver then
upnotes=content:match("【notes】(.-)【notes】")
uplinks=content:match("【links】(.-)【links】")
updlg=AlertDialog.Builder(this)
.setTitle("New Version Available !")
.setMessage(upnotes)
.setPositiveButton("Update",{onClick=function(v)
url=uplinks
viewIntent = Intent("android.intent.action.VIEW",Uri.parse(url))
activity.startActivity(viewIntent)
end})
.setNegativeButton("Cancel",nil)
.show()
弹窗圆角(updlg.getWindow(),0xffffffff)
else
MD提示("The Current Version App Is Latest","#6F894BF2","#FFFFFF","10","10")
end
else
MD提示("Unstable Network Connection, Checking Update Failed","#6F894BF2","#FFFFFF","10","10")
end
end)
end
LDupdate(3.0,"https://raw.githubusercontent.com/lutfilahdzaky/app/master/pubgm/ver")
FILE ON WEBSITE
【version】4.0【version】
【notes】Auto Check Update Maintenance!【notes】
【links】https://youtube.com/lutfilahdz【links】@lutfilahdz