در این سورس کد از آرشیو یاهو۹۸، «ایجاد افکت با تایمر در TXT» را بهصورت کامل و کاربردی یاد میگیرید و میتوانید بلافاصله در پروژه بیسیک۴اندروید خود استفاده کنید.
✨ نکات مهم:
• کد آماده و تستشده (1 قطعهکد)
• فایل ضمیمه (سورس/نمونه) همراه پست
🚀 نحوه استفاده:
فایل سورس را دانلود و در B4A باز کنید؛ مسیرها و تنظیمات را مطابق توضیحات بالا اعمال کنید و خروجی APK بگیرید.
📥 فایلهای ضمیمه:
• لینک rar (s5.picofile.com): http://s5.picofile.com/file/8285754076/neveshtan_text.rar.html
| دستهبندی | سورس کد اندروید |
| تاریخ انتشار | ۲۷ شهریور ۱۴۰۵ - ۰۲:۴۰ |
| تعداد بازدید | ۲ |
| تعداد فروش | ۰ |
| فرمت تحویل | فایل دانلودی (بعد از پرداخت آنی فعال میشود) |
| پشتیبانی | تیکت پشتیبانی در پنل کاربری |
ویژگیهای کلیدی
- سورس کد آماده B4A
- کاملاً رایگان
- کد تستشده با توضیح فارسی
- فایل ضمیمه همراه مطلب
هنوز نظری ثبت نشده است. اولین نفر باشید!
برای ثبت نظر وارد شوید. (ثبت نظر پس از خرید فعال میشود)
#Region Project Attributes
#ApplicationLabel: B4A Example
#VersionCode: 1
#VersionName:
'SupportedOrientations possible values: unspecified, landscape or portrait.
#SupportedOrientations: unspecified
#CanInstallToExternalStorage: False
#End Region
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim tm1 As Timer
Dim plas As Int = 0
Private logo_txt As EditText
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("sasa")
tm1.Initialize("tm1",500)
tm1.Enabled = True
End Sub
Sub tm1_Tick
If plas = 0 Then
logo_txt.Text = ""
Else If plas = 1 Then
logo_txt.Text = "s"
Else If plas = 2 Then
logo_txt.Text = "sy"
Else If plas = 3 Then
logo_txt.Text = "sye"
Else If plas = 4 Then
logo_txt.Text = "syed"
Else If plas = 5 Then
logo_txt.Text = "syed E"
Else If plas = 6 Then
logo_txt.Text = "syed Es"
Else If plas = 7 Then
logo_txt.Text = "syed Esm"
Else If plas = 8 Then
logo_txt.Text = "syed Esma"
Else If plas = 9 Then
logo_txt.Text = "syed Esmae"
Else If plas = 10 Then
logo_txt.Text = "syed Esmaei"
Else If plas = 11 Then
logo_txt.Text = "syed Esmaeil"
End If
plas = plas + 1
If plas = 12 Then
plas = 0
End If
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub