I've added before after log for better understanding,
B4X:
Dim BezierView As BitmapCreator
Dim BezierPath As BCPath
Dim sWidth As Double = 1000
Dim sHeight As Double = 500
BezierPath.Initialize(0, 0)
BezierPath.LineTo(sWidth,sHeight)
BezierPath.LineTo(0,sHeight)
BezierPath.LineTo(0,0)
BezierView.Initialize(sWidth,sHeight)
Log("before 1")
BezierView.DrawPath(BezierPath,BackgroundColor,True,0)
BezierView.DrawPath(BezierPath,shadow,False,10)
Log("after 1")
Here is the log,
B4X:
Logger connected to: OnePlus ONEPLUS A6000
--------- beginning of system
--------- beginning of crash
--------- beginning of main
Copying updated assets files (1)
*** Service (starter) Create ***
** Service (starter) Start **
** Activity (main) Create, isFirst = true **
before 1
1
1
after 1
** Activity (main) Resume **
** Activity (main) Pause, UserClosed = false **
Hi, maybe I'm wrong (I'm a novice, sorry) but if you click on a TabIcon that's already selected no click event happens. I use 1.30 version and b4a 9.30. Thank you.
Hi, maybe I'm wrong (I'm a novice, sorry) but if you click on a TabIcon that's already selected no click event happens. I use 1.30 version and b4a 9.30. Thank you.
Right, thank you! Triggering the event it's what I need, but I don't know how to do. At the moment I bought the ebook B4A-Rapid-8-80, but I'm a beginner. Thanks to all.
i've created an animation "in-out cubic" from that site, and click the "download source" button, then i get a file called "easing_function_generator.fla"
then i added it to my additional library folder
what the next step?
another one please
if the user click on back button on phone, the tab still on the prev button
B4X:
Sub Activity_KeyPress (KeyCode As Int) As Boolean 'Return True to consume the event
If KeyCode = KeyCodes.KEYCODE_BACK Then
WebView1.Back
Return True
End If
Return False
End Sub
i use the above code for webview, how to handle this in tabs?
another one please
if the user click on back button on phone, the tab still on the prev button
B4X:
Sub Activity_KeyPress (KeyCode As Int) As Boolean 'Return True to consume the event
If KeyCode = KeyCodes.KEYCODE_BACK Then
WebView1.Back
Return True
End If
Return False
End Sub
i use the above code for webview, how to handle this in tabs?
Is there any way to put a panel back of WobbleMenu because the panel cover it and I cant put its evaluation to -1.
I tried to put it in a small panel down at the screen with big evaluation but the icons resized and doesnt feel right.
Is there any way?
Is there any way to put a panel back of WobbleMenu because the panel cover it and I cant put its evaluation to -1.
I tried to put it in a small panel down at the screen with big evaluation but the icons resized and doesnt feel right.
Is there any way?
I dont want to drop shadow. I want to Wooble menu be front of all elements of activity.
Panel Cover the WoobleMenu, I want to set Wooblemenu Front of Panel. But the panel has allready the minimum evaluation number(0). Do you have any idea how could be done?
I dont want to drop shadow. I want to Wooble menu be front of all elements of activity.
Panel Cover the WoobleMenu, I want to set Wooblemenu Front of Panel. But the panel has allready the minimum evaluation number(0). Do you have any idea how could be done? View attachment 91092