intentfilter Questions

4

Solved

I have an Android app that people use as a replacement for a website. Hence, when users encounter an URL to the website, I want to give them the option to "open the URL" in my app instead of in the...
Scabby asked 8/11, 2012 at 13:14

16

I want to share Text + Image together using ACTION_SEND in android, I am using below code, I can share only Image but i can not share Text with it, private Uri imageUri; private Intent intent; i...
Cordage asked 2/12, 2013 at 16:35

3

Solved

Need more info regarding intent-filter tag specified in manifest. I am aware that we can specify data in two forms: <intent-filter> <data android:host="com.myHost" android:scheme="conten...
Anguine asked 16/5, 2013 at 9:12

3

I'd like to capture a redirect that occurs in a Chrome Custom tab to ensure the user stays in a native mobile application. Here's how the Chrome Custom Tab is launched: val url = "https://demo...

3

I try to write an Activity as an alternative to google maps. It works perfect when calling it by an google-maps url: <activity android:name="DataActivity" android:label="@string/app_name"> ...
Surfacetosurface asked 6/12, 2010 at 17:9

8

Solved

I would like to start an intentchooser for apps which can return any kind of file Currently I use (which I copied from the Android email source code for file attachment) Intent intent = new Inten...
Septimal asked 20/1, 2012 at 17:38

5

Solved

I've been reading the docs for supporting app links for android and the website my app supports works with subdomains but there's too many subdomains and they are built dynamically. I was wondering...
Hammurabi asked 3/12, 2015 at 14:23

3

Solved

In my app I have 3 activities, MainActivity, SecondaryActivity and TertiaryActivity. I want SecondaryActivity to be a default app link handler for a particular domain on Android 6, as described in ...
Hidie asked 25/3, 2016 at 22:30

4

Solved

I am stuck with the following scenario. I defined the following deep link intent filters in the AndroidManifest.xml Expected behavior is when I found a url of format http://​www.domain.com/a/blabl...

7

Upload failed You should use both http and https as schemes for your web intent-filters. I am getting this error while uploading the instant app to Play Store. I have declared intent filters for ...
Viewless asked 19/6, 2017 at 1:37

2

I have an Android app whose targetSdkVersion : 30 and App Links are working as expected on my device running Android OS 11, but they are broken (web links don't open the app by default) on another ...
Matins asked 24/11, 2021 at 18:0

9

I have this method so far , but it came up like something is missing for example I have a file /sdcard/sound.3ga that returns false ( like there is no activity that can handle this type of file ) ...

9

In my android app, I have a bitmap (say b) and a button. Now when I click on the button, I want to share the bitmap. I am making use of the below code inside my onClick() to achieve this :- Intent...
Easy asked 19/10, 2015 at 20:2

4

Solved

We mention android.intent.action.MAIN and android.intent.category.LAUNCHER as Intent filter of the launcher activity in the Manifest.xml. What is imp. of these two? What are their functionality?
Undefined asked 9/6, 2011 at 6:11

17

Solved

I have a custom file type/extension that I want to associate my app with. As far as I know, the data element is made for this purpose, but I can't get it working. http://developer.android.com/guid...
Jubilee asked 21/9, 2010 at 12:32

7

I have this intent-filter that I want that every time user clicks a link to eeexample.com to open my app: <intent-filter> <data android:scheme="http" /> <data android:scheme="http...

4

Solved

My EasyMock's expected method is perceived as unexpected, although I do not use and strict mocks, and the method is already declared before being replied. Test fails in this line of code: Intent ...
Weatherby asked 12/8, 2015 at 13:16

3

I have an app that could view different kinds of video files using intent filters from different sources. To allow the app to appears always as choice when I try to open whatever video file, I have...
Appall asked 25/9, 2018 at 21:22

4

Solved

Ok, so I know there has to be more to it than this. I've read many answers on here that all say the same thing but it's not working for me. I want to be able to open an Android app using a link wit...
Aksoyn asked 30/5, 2015 at 13:1

2

I am facing a problem related to Android Intent-Filters esp. in data-element with a path pattern Reference: https://developer.android.com/guide/topics/manifest/data-element I need to match a patter...
Milreis asked 20/1, 2021 at 11:55

3

Solved

I have been experimenting with the Intent Filters for the past few hours, and I am really confused as to why the Google tutorial code for Handling App Links via Intent Filters is not working on my ...
Schizothymia asked 16/6, 2017 at 13:23

4

I have three activity and three Intent Filters for them in the Android Manifest. <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppT...
Tole asked 3/1, 2013 at 15:38

2

Solved

I wrote an application that user after click on buy Button He/She redirect to Internet Browser (e.g: chrome) and after payment I want he come back to my App (my activity) so I found out that I shou...
Overhear asked 23/11, 2015 at 12:21

8

Solved

What is the purpose of using android.intent.category.DEFAULT in the Category field of Intent Filters?

6

i've tried to sending data between App1 to App2 via Intent in Android i used this code but i couldn't resolve my problem. App1 MainActivity : Intent i2 = new Intent("com.appstore.MainActivity")...
Weixel asked 27/7, 2016 at 9:6

© 2022 - 2024 — McMap. All rights reserved.