D dank Member Licensed User Longtime User May 24, 2012 #1 There is a Java application that will start my B4A app and pass several parameters for me to use in my program. How can I check to see if the parameters have been passed and, if so, what the values are? Thanks!
There is a Java application that will start my B4A app and pass several parameters for me to use in my program. How can I check to see if the parameters have been passed and, if so, what the values are? Thanks!
warwound Expert Licensed User Longtime User May 25, 2012 #2 In your B4A app look at the Activity StartingIntent. I think that's where you'll find any data passed when your B4A app is started. The documentation for Intent can be found here: http://www.b4x.com/android/help/core.html#intent. Martin. Last edited: May 25, 2012 Upvote 0
In your B4A app look at the Activity StartingIntent. I think that's where you'll find any data passed when your B4A app is started. The documentation for Intent can be found here: http://www.b4x.com/android/help/core.html#intent. Martin.
D dank Member Licensed User Longtime User May 25, 2012 #3 Exactly what I needed. Many thanks!! Upvote 0