tdocs2 Well-Known Member Licensed User Longtime User Jul 31, 2015 #1 Greetings. Thank you in advance for answering my question. Is it possible to run an app within an app? For example, make the Google Android Calendar or Docs or Sheets run inside a panel in my app? Best regards. Sandy
Greetings. Thank you in advance for answering my question. Is it possible to run an app within an app? For example, make the Google Android Calendar or Docs or Sheets run inside a panel in my app? Best regards. Sandy
EnriqueGonzalez Well-Known Member Licensed User Longtime User Jul 31, 2015 #2 You can not run an app within an app, but for the apps you are refering to, may be you can call their Web counterparts with webview. Upvote 0
You can not run an app within an app, but for the apps you are refering to, may be you can call their Web counterparts with webview.
tdocs2 Well-Known Member Licensed User Longtime User Jul 31, 2015 #3 Thank you, Enrique. I have already done that, and yes, you can. However, in the webview with sync issues, there are always delays if you perform an update from your own app.... Sandy Upvote 0
Thank you, Enrique. I have already done that, and yes, you can. However, in the webview with sync issues, there are always delays if you perform an update from your own app.... Sandy
EnriqueGonzalez Well-Known Member Licensed User Longtime User Jul 31, 2015 #4 i owe you an apologie, may be this lib will help you. https://www.b4x.com/android/forum/t...ing-notifications-and-miniapps.41136/#content Upvote 0
i owe you an apologie, may be this lib will help you. https://www.b4x.com/android/forum/t...ing-notifications-and-miniapps.41136/#content
Y ykucuk Well-Known Member Licensed User Longtime User Aug 1, 2015 #5 Hello, it works for me Dim in AsIntent Dim pm AsPackageManager in = pm.GetApplicationIntent(com.rovio.angrybirds) If in.IsInitialized Then StartActivity(in) EndIf Upvote 0
Hello, it works for me Dim in AsIntent Dim pm AsPackageManager in = pm.GetApplicationIntent(com.rovio.angrybirds) If in.IsInitialized Then StartActivity(in) EndIf
DonManfred Expert Licensed User Longtime User Aug 1, 2015 #6 ykucuk said: it works for me Click to expand... You are starting a _NEW_ app when you use the intent. The App is NOT part of your app!!! Upvote 0
ykucuk said: it works for me Click to expand... You are starting a _NEW_ app when you use the intent. The App is NOT part of your app!!!