Sub GetBA As ObjectDim jo AsJavaObject
Dim cls AsString = Me
cls = cls.SubString("class ".Length)
jo.InitializeStatic(cls)Return jo.GetField("processBA")End Sub
Where can I find a list of intents and when do we preface the intent with "android.intent.action.xxxxxxx"?
I used your demo code with the JavaObject and it worked great.
I am having a problem integrating the wigits code:
B4X:
Dim i As Intent
i.Initialize("android.intent.action.ACTION_APPWIDGET_PICK", "")
i.PutExtra("android.intent.extra.EXTRA_APPWIDGET_ID", "TSStart")
StartActivityForResult(i)
into that code. (TSStart is a widget that is installed.)
Can you advise?