I have an app for daily news, knowledge sharing, etc. In this, by clicking the share button we can share a particular news item with others in WhatsApp/Facebook/Twitter etc. If the other person clicks this URL, different web browsers are displayed to open the post. But I want my app to be listed in this list if the user has installed my app otherwise open in a web browser. How to do this in android?
Related
I have a problem of how to implement a way of sharing a news link that when the receiver of the link click on it, the link should take them to the news details activity in my app if the user does not have my app installed on their phones the link should take them to google play page.
Note:
I don't want my users to be routed to any website and
my app has a list of news activity and activity for displaying single news details.
Hi I have functionality in my app where I have to do some code on event when user shares my app.
So basically on tap share icon androids default share indent will open which will show installed apps through which user can share(e.g whatsapp, Facebook, gmail) then user will select any of the above app and then once he shares app i need that event of sharing post.
Please help me to achieve this functionality.
I am just curious to know the possibility of the below scenario,
I have a MailChimp URL with the product page,( Say http://www.androidapp.com/productpage?product_id=10 ) Now this url is sent to user email. Whenever user clicks on the url, the android app should gets open the particular product screen in the installed app. Is this achievable?
I had analyzed with these references and yet to find the possibility of achieving it.
Refered:
https://developer.android.com/training/app-indexing/deep-linking.html
https://en.wikipedia.org/wiki/Mobile_deep_linking
Dynamic Link Actions in mailchimp
I have an app and a mobile site. I also send emails to my users. I would like the following to happen if my users open these emails on their mobile phones and click on a link:
If a user has installed my app, then launch the app and open the relevant page inside it.
If a user has NOT installed my app, then launch the browser and take him to the relevant page on my mobile site.
I want this to happen seamlessly and automatically. I DON'T want to use the inbuilt android prompt as users end up choosing chrome (since it is the first option shown). How can I do this? Would ideally want solutions for both android & ios.
You can do this with a landing page. Send user to landing page, check platform, then check if they have app installed(if they have registered custom url scheme) if they have then they go to app. Otherwise they go to mobilesite.
See this answer by https://stackoverflow.com/a/29019660/1165581 by Adam
You can NOT prevent the Android prompt which lets the user choose an option. What you can do is, create a link to your mobile site and have your App react to urls containing your domain. So what will happen is:
if a user clicks the link and does NOT have your App installed, he/she will be prompted with the default url handler prompt (only the first time) and then open the mobile site in the prefered browser
if a user clicks the link and DOES have your App installed, he/she will get the same prompt, only your App will be listed there as well next to browser Apps.
Here is an explanation on how to this: Android Respond To URL in Intent
You can use URL Schemes in iOS for your requirement to be full filled. By Using URL Scheme you can do exactly same. Clicking on link will launch your app. Please go through the concept of URL Schemes.
Follow the below referral link:
http://code.tutsplus.com/tutorials/ios-sdk-working-with-url-schemes--mobile-6629
Hope this helps!!
I am creating native android application with image gallery.
I want to create a Google plus button for each of my images. When user press +1 I want to publish a post on his wall:
user_name like's image_name on my_app
And I wish that when clicking on this post it will do the follow:
clicking on user_name will bring you to the users page.
clicking on image_name will bring you to my application and show you this image.
clicking on my_app will bring you to my application, main page.
*If you don't have the app installed it will send you to Google play store, to download it.
How do I do this?
Is it possible?
With the new Google+ Sign-In, you can now create an Interactive Post for your users. This behaves much the same as a normal Share, however, you can add a call to action button (allowing users to "listen" or "RSVP") and a deep link, which will bring a user from their Google+ Stream and into your app. Also, these posts can be customized with pre-filled text and up to 10 pre-filled recipients.
Learn more at: https://developers.google.com/+/features/interactive-posts.