iOS Question ProgressView Image Background

gerredtor

Active Member
Licensed User
Hello I want a wallpaper paste into a Progress View and a " picture of the progress "
 

JanPRO

Well-Known Member
Licensed User
Longtime User
The following properties are available in iOS: progressImage and trackImage.

B4i Code:

B4X:
Sub SetTrackImage(PV As ProgressView, Image As Bitmap)
    Dim NaObj As NativeObject = PV
    NaObj.RunMethod("setTrackImage:",Array(Image))
End Sub

Sub SetProgressImage(PV As ProgressView, Image As Bitmap)
    Dim NaObj As NativeObject = PV
    NaObj.RunMethod("setProgressImage:",Array(Image))
End Sub

Jan
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…