[android-developers] Re: Custom Intent does not reach PhoneApp

2011-05-04 Thread bluewolf
Thanks, am posting the question in the Android Platform group. On May 4, 12:52 pm, TreKing wrote: > On Tue, May 3, 2011 at 2:42 PM, bluewolf wrote: > > I have added an action to the intent filter in > > packages/apps/Phone/src/ com/android/phone/PhoneApp.java > > This is not the forum for modify

[android-developers] Re: Custom Intent

2008-07-09 Thread ZaNkY
Thank you Justin and Hackbod for your quick replies! So basically, the only way for me to accomplish what I want would be to edit the actual EditText class... which can't be done since the source code has yet to be released... My end goal is an onscreen keyboard. Any ideas? --Z --~--~-

[android-developers] Re: Custom Intent

2008-07-08 Thread hackbod
That said, there is no intent that gets broadcast when a text view gets focus. The inner workings of an application are opaque to other applications; interactions across applications happen through explicit operations such as startActivity(), sendBroadcast(), bindService(), etc. This is for both

[android-developers] Re: Custom Intent

2008-07-08 Thread Justin (Google Employee)
When your application is installed on the device the IntentReceivers defined in your manifest file are registered with the system. Take a look at the documentation for defining your IntentReceiver in the manifest at http://code.google.com/android/reference/android/R.styleable.html#AndroidManifest