B4A Tutorial Inline Java Code - Erel    Feb 24, 2022   (171 reactions)   tags: Code, Java, inline java code The next versions of B4A (4.30) and B4J (2.80) will allow you to embed Java code inside your... to access third party SDKs and also to allow developers to add existing Java code snippets to their projects. Adding Java code is done with an #If Java block: #If JAVA public String FirstMethod() { return "Hello World!"; } #End If You need an instance of JavaObject to access the Java methods: Sub Process_Globals Private NativeMe As JavaObject End Sub Sub Globals End Sub... B4A Code Snippet Implementing a callback with inline Java - Erel    Oct 3, 2025   (15 reactions) This is a template that you can use when implementing a callback with inline Java, whether it is an interface or abstract class, inside a B4A/B4J class, such as B4XMainPage.
#if Java
public static... Beta Can we use ba.raiseEvent from inline java code? - stevel05    Feb 2, 2015 Is it possible to use ba.raiseEvent to call a callback sub in the enclosing Activity,class,service or code module? It doesn't give an error, just no result either. In a class, I've tried: Sub DoMultiply nativeMe.RunMethod("Multiply", Array ("logresult",10)) End Sub Sub LogResult(Result As Int) Log(Result) End Sub #If JAVA private int mm = 100; public void Multiply(String EventName,int i) { int result = i * 2 + mm; if(ba.subExists(EventName... B4A Code Snippet Using Java 8+ lambdas with inline Java code - Erel    Apr 17, 2024   (8 reactions) :
#AdditionalJar: core-lambda-stubs.jar, ReferenceOnly
Example:
'in B4XPage
#if java
import java....forEach( (n) -> BA.Log("" + n) );
}
#End If
Me.as(JavaObject).RunMethod("test... B4A Question Create a broadcast receiver when app loads using inline java - Jmu5667    Apr 16, 2015 Hi All I have a app that uses a few intent filters. They are currently setup in manifest file. Example ' // Power Intents AddReceiverText(svc_power, <intent-filter> <action android:name="android.intent.action.ACTION_POWER_CONNECTED"/></intent-filter>) AddReceiverText(svc_power, <intent-filter> <action android:name="android.intent.action.ACTION_POWE... B4A Question Inline Java - GiovanniPolese    Aug 2, 2023 Hi to All
I have some java code that might be useful in my project. I was thinking to insert it with the "#if JAVA ... #end if" paradigm.
As a first step, I created a B4XPages project and... B4A Example Take a Screenshot with Inline Java Code - Johan Schoeman    Dec 2, 2017   (10 reactions) I have tested this on an Android 7.0 device only - take a screenshot of your activity. You need to enable the JavaObject library to make use of it. @JordiCP solved my initial problem here (thanks @JordiCP): https://www.b4x.com/android/forum/threads/passing-b4a-activity-to-inline-java-code.86796... be accessed from this module. Dim nativeMe As JavaObject Private Button1 As Button Private iv1... End Sub #If Java import android.app.Activity; import android.graphics.Bitmap; import android... Java Question [SOLVED] Handle Inline Java in a cross platform library - max123    Aug 19, 2024 and subs for both,
but now I encountered this problem.
How to handle inline java code for more than one platform ?
May is a stupid question, but it won't work for me, I tried this way:
#If JAVA... B4A Example Creating 1D and 2D Barcodes using inline Java Code and the ZXING core library - Johan Schoeman    Nov 28, 2015   (20 reactions) 10. CODABAR The classes use inline java code with calls to the ZXING core library to create and... by adding (and modifying)additional classes to the B4A project. All the inline Java code comes from... the B4A code in the main activity (black and white has been hard coded within the inline Java code). Amend the B4A code accordingly to pass the colors to the inline Java code. Some sample code... B4A Example ImageView - Circular, Hexagonal, Triangular, Bubble, Star Imageviews (with inline Java code) - Johan Schoeman    Jul 7, 2015   (25 reactions) 32781 See attached project with inline Java code to create round imageviews. You only need library JavaObject V2.01 to be enabled.... Page: 1   2   3   4   5   6   7   |