[android-developers] Re: Intent filter to catch links from SMS doesn't work

2012-07-10 Thread Zdenek Hr
I have the same problem, have you solved it? Dne úterý, 25. ledna 2011 14:13:02 UTC+1 Vincent napsal(a): Hi all, I actually already asked this question on StackOverflow but I didn't get any answer that could help me solve the problem. Here is the thing. What I want to do is to define

[android-developers] Re: intent-filter

2012-03-08 Thread Josh Brown
Firstly, is com.reflect.player.Main_Activity an action that is being sent in an Intent by your code? If so you're not following standard naming conventions for actions. It should be package(.subpackage).action.YOUR_ACTION_IN_CAPS. What you've specified looks more like the classname for your

[android-developers] Re: Intent filter changed on Android 3.2?

2011-07-20 Thread Zsolt Vasvari
Nope, but I am sure a lot of changes are not documented. For example, 1280x800 devices now report their screen size as 1280x752. On Jul 20, 2:57 pm, Tor tor.hough...@gmail.com wrote: Hello, I have an app that triggers on YouTube URLs, and it worked as designed until Android 3.1. Does

Re: [android-developers] Re: Intent filter changed on Android 3.2?

2011-07-20 Thread Dianne Hackborn
On Wed, Jul 20, 2011 at 12:04 AM, Zsolt Vasvari zvasv...@gmail.com wrote: Nope, but I am sure a lot of changes are not documented. For example, 1280x800 devices now report their screen size as 1280x752. This was a bug fix -- the platform should have been reporting 1280x752, because that is

[android-developers] Re: Intent filter changed on Android 3.2?

2011-07-20 Thread Tor
Hm. On a 3.1 device (emulated), the list of applications to open the URL with appears, but the same URL (regardless of whether the application was built with the API13 SDK or not) on a 3.2 device (emulated) opens in the YouTube application (no options given). A Xoom user with 3.2 initially

[android-developers] Re: Intent Filter for Media Player (Youtube Video Play)

2011-01-02 Thread Leif Andersen
ORit brings you here. (Sorry, but the amount of times I do a google search, and fine forum posts saying 'do a google search' without actually giving me the answer is starting to drive me nuts). ~Leif 0On Dec 20 2010, 8:27 am, TreKing treking...@gmail.com wrote: On Mon, Dec 20, 2010 at 2:04

[android-developers] Re: Intent filter question

2010-12-24 Thread Pent
On Dec 24, 11:25 am, Tor tor.hough...@gmail.com wrote: Hello, Is it possible to act on specific data in an intent? (Say, if a URL matches a regular expression.) I am able to trigger my application when someone clicks on a URL, but I don't want the app to be in the browseable list unless a

[android-developers] Re: Intent filter question

2010-12-24 Thread Tor
On Dec 24, 1:28 pm, Pent tas...@dinglisch.net wrote: Intent matching is described here: http://developer.android.com/reference/android/content/IntentFilter.html I think this one from my manifest only matches paths ending in .prf.xml.  intent-filter                                    

[android-developers] Re: Intent filter targeting specific SDK version

2010-12-02 Thread Kwisatz
Wow! Thank you so much, Mark. You really guided me to the right place. Here is what I come up with: In the manifest, I have my Activity, let's call it com.test.disable.TargetActivity, and it is set with one or more intent filters. So, during the app execution, somewhere in the code, I can see if

Re: [android-developers] Re: Intent filter to launch an application

2010-09-16 Thread Prakash Iyer
would you mind expanding on how you solved the problem. certainly you have provided a pointer but might help others avoid spending the same cycles... thanks. On Wed, Sep 15, 2010 at 9:54 AM, Alok Kulkarni kulsu...@gmail.com wrote: Solved the problem. Referred to the Manifest file of Androd

[android-developers] Re: Intent filter to launch an application

2010-09-15 Thread Alok Kulkarni
Solved the problem. Referred to the Manifest file of Androd Browser. Thanks, Alok. On Wed, Sep 15, 2010 at 4:59 PM, Alok Kulkarni kulsu...@gmail.com wrote: Hi, I want to do  the following. When a user clicks on a URL containing a few specific keywords like http://ad.mysite.com from somewhere

[android-developers] Re: Intent filter for text/calendar ?

2010-01-21 Thread jarkman
On Jan 21, 5:11 pm, Mark Murphy mmur...@commonsware.com wrote: I've been trying (and failing) to write an intent filter which will allow my app to handle text/calendar attachments received in the GMail or email apps I don't really know if my failure is because the mail apps are just not

Re: [android-developers] Re: Intent filter for text/calendar ?

2010-01-21 Thread Mark Murphy
Well, what I'd like to happen is this: - Receive a mail with a text/calendar attachment in the GMail (or email) app - Click on the attachment - See my app open to handle it Sounds reasonable. What actually happens is that the mail apps show the attachment is there, but don't offer any

[android-developers] Re: Intent filter for text/calendar ?

2010-01-21 Thread jarkman
On Jan 21, 5:34 pm, Mark Murphy mmur...@commonsware.com wrote: Well, if you hunt through Google Code Search, you'll find a number of sample intent filters that use android:mimeType. See if any of those are treated properly by the mail client. If one does, try mirroring their intent filter.

[android-developers] Re: intent filter issue

2009-09-14 Thread Dianne Hackborn
This is because of task affinities: http://developer.android.com/guide/topics/fundamentals.html#acttask The easy solution is to give this activity an empty affinity, so it is not considered to be part of your application. But when you do this, you do need to think about how the user will leave

[android-developers] Re: intent filter

2009-08-09 Thread Dianne Hackborn
For specifying which intent actions and categories that the filter matches. For example to match an intent action com.example.DO_SOMETHING, you would specify that as the action in the intent filter. On Sun, Aug 9, 2009 at 11:47 AM, Andrei gml...@gmail.com wrote: Could somebody please humanly

[android-developers] Re: intent-filter for addContact and editContact ?

2008-12-09 Thread jaspher
hello everyboday thank you for your support and sorry for my slowly answer... it works with a contentResolver and a ContentObserver (code). do you mean that it isn't for the performance of the device not a good idea to work with something like that? thanks in advance public class

[android-developers] Re: intent-filter for addContact and editContact ?

2008-12-09 Thread Dianne Hackborn
I was just explaining why we designed things the way we did. On Tue, Dec 9, 2008 at 8:25 AM, jaspher [EMAIL PROTECTED] wrote: hello everyboday thank you for your support and sorry for my slowly answer... it works with a contentResolver and a ContentObserver (code). do you mean that it

[android-developers] Re: intent-filter for addContact and editContact ?

2008-12-04 Thread Bill Napier
I would start looking here: http://code.google.com/android/reference/android/content/ContentResolver.html#registerContentObserver(android.net.Uri, boolean, android.database.ContentObserver) with ContentObserver.registerContentObserver which sounds like it should do what you want. I haven't

[android-developers] Re: intent-filter for addContact and editContact ?

2008-12-04 Thread Bill Napier
I would start looking here: http://code.google.com/android/reference/android/content/ContentResolver.html#registerContentObserver(android.net.Uri, boolean, android.database.ContentObserver) with ContentObserver.registerContentObserver which sounds like it should do what you want. I haven't

[android-developers] Re: intent-filter for addContact and editContact ?

2008-12-04 Thread Dianne Hackborn
Yes, this is the way to monitor for content provider changes. Note that this is deliberately not done as a broadcast, you can only receive these while you are running by explicitly registering for them, because we didn't want to get in the situation of launching 1 or more apps every time some

[android-developers] Re: intent-filter need and good document

2008-05-16 Thread Raja Nagendra Kumar
For notepad e.g for one activity I see more than one intent-filter is defined.. what does this grouping mean activity class=.NotesList android:label=@string/title_notes_list intent-filter action android:value=android.intent.action.MAIN / category

[android-developers] Re: intent-filter need and good document

2008-05-16 Thread hackbod
http://code.google.com/android/reference/android/content/Intent.html On May 16, 10:11 am, Raja Nagendra Kumar [EMAIL PROTECTED] wrote: For notepad e.g for one activity I see more than one intent-filter is defined.. what does this grouping mean activity class=.NotesList