i have just started to develop a basic app, and have integrated an SDK for online chat, using which customers could chat with customer support.
I want implement if someone want to share screen shot, it should be done without going into gallelry just like android native shows default apps for sharing like whatsapp,facebook, my app also could be reflected there.
Is it possible??
Related
We are developing a photo-booth style app in Unity.
The app will be deployed on an Android device and placed into a public space like a shopping mall.
We would like to allow users to share their images on social media. Facebook / Instagram.
Having checked how the native share functionality works - it uses the account logged into the device to share. However, we would like the users to be able to share to their own social media accounts.
Is this possible? It seems like the built in share functionality on Android would not allow for this.
Would we have to use API to achieve this kind of function?
We had the idea to present them with a form to log into their Facebook / Instagram account to share content.
Once its shared - it would need to logout and not keep the login details.
Does anyone know if there is perhaps an Asset for Unity to do such a thing?
Thanks!
Hello Great Android Developers,
I want to create an android app which will contain a whiteboard, Video Chat Option, Document sharing etc. Like shown in the video on bottom of this website https://www.vedantu.com/
I can develop all required contents in app but the problem is to share screen among the users. can you help me on how to share android activity or screen in real time with users?
I'm new to this forum..
I want to create a Android app (say mother app), which can be installed to the Android devices on the home menu. This app should contains one or more apps inside (say child app)..
The mother app should have online login verification and on the successful login this app should show all the child app...
The concept is just like creating a app such as newsstand of iPhone.
Is it possible to create such app for Android using Adobe Air
When any child app is installed from the marketplace then It must be shown inside mother app instead of home menu
To make it clear:
I want to create a app which store my other apps when it is downloaded from anywhere, instead of placing my apps here and there on the device.
I suggest that you try out Android tutorial first and proceed further. It will surely help you out. You can check this Stackoverflow question for information about using Adobe Air in your application. I can help you with this information only. :D
I'm looking for the easiest solution to the following scenario:
I've developed a web app.
I need to send an sms with link+parameters for a unique user's registration.
BUT I want the link to direct to a native app installation that will install an app icon on home screen, and all this native app has to do is open the link to the web app.
By that I can avoid the Awkward solution of using bookmarks in android.
I know nothing about mobile app programming, so by easiest I mean: Either very basic tutorial, or a working native app that I can just change the URL and resubmit it as a new Native app.
or Any other easy suggestion
I want to know how to integrate google plus in my app. Currently I am developing news application, in which I would like to have a news sharing option for things like facebook, twitter, gmail, and google plus. How can I achieve this functionality?
Sharing the Android way doesn't involve integrating services one by one. That would require you to update your app any time a new service launches that you might want to integrate with. Instead you use the ACTION_SEND Intent.
This blog post gives a good intro to its use: http://sudarmuthu.com/blog/sharing-content-in-android-using-action_send-intent
When you implement sharing this way your users can share using any app they have installed on their device. If they install a new app that can accept sharing intents your app will immediately be able to integrate with it with no changes from you. The Google+ app accepts these sharing intents.
You can easily share to Google+ with ShareCompat, you only need the support library for that.
http://googleplusplatform.blogspot.co.at/2012/05/sharing-rich-content-from-your-android.html