[android-developers] Intents

2011-08-07 Thread kypriakos
Hi all, I start an new intent on an activity: Intent intent = new Intent(); intent.seClass (..); intent.setFlags(...NEW_TASK); intent.addFlags(...SINGLE_TOP); startActivity(intent). In the target Activity I have the onNewIntent() that simply has code for doing some processing. I see the

Re: [android-developers] Intents

2011-08-07 Thread Mark Murphy
On Sun, Aug 7, 2011 at 4:25 AM, kypriakos demet...@ece.neu.edu wrote: I start an new intent on an activity: Intent intent = new Intent(); intent.seClass (..); intent.setFlags(...NEW_TASK); intent.addFlags(...SINGLE_TOP); startActivity(intent). In the target Activity I have the

Re: [android-developers] Intents for Camera

2011-07-16 Thread TreKing
On Sat, Jul 16, 2011 at 12:38 AM, Durgadoss Ramanathan r.durgad...@gmail.com wrote: I am writing a simple App that needs to be notified when the Camera App Starts. What is the Camera App ? There are many available for download, any of which a use may have installed at any given time. Also,

[android-developers] Intents for Camera

2011-07-15 Thread Durgadoss Ramanathan
Hi, I am writing a simple App that needs to be notified when the Camera App Starts. Also, I want my App to be notified when we 'touch' the 'capture' button in the camera. Are there any Intents available for these ? Or there is some other method to notify ? -- Regards Durgadoss -- You

[android-developers] Intents from notexisting widget

2011-07-14 Thread Gerhard Duennebeil
Hello everybody I try to write a widget that opens a configure activity when touched. Of course I ran into the bug with the widget id's not being properly deleted but I have the feeling I also have trouble with a variant of it: When I clear my home screen from all widgets of my type and then

Re: [android-developers] Intents for performing Touch events

2011-07-01 Thread Mark Murphy
On Fri, Jul 1, 2011 at 12:42 AM, rohit rjl013...@gmail.com wrote: Are there any intents for generating touch events on android at a particular point on the screen? No. I would like to generate touch events on the screen using a background service on the screen. Sorry, AFAIK this is not

[android-developers] Intents for performing Touch events

2011-06-30 Thread rohit
Are there any intents for generating touch events on android at a particular point on the screen? I would like to generate touch events on the screen using a background service on the screen. Thanks in advance. -- You received this message because you are subscribed to the Google Groups

[android-developers] intents or activities run during app install/uninstall like rpm %post/%postun?

2011-02-26 Thread tedx
RPM lets you specify scripts that can be run at different phases of the install/unstall process. Is there any equivalent for Android apps? I'd like to do things like create and populate a DB for instance. Ted -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] intents or activities run during app install/uninstall like rpm %post/%postun?

2011-02-26 Thread Mark Murphy
On Sat, Feb 26, 2011 at 1:14 PM, tedx txt...@gmail.com wrote: RPM lets you specify scripts that can be run at different phases of the install/unstall process. Is there any equivalent for Android apps? I'd like to do things like create and populate a DB for instance.

[android-developers] Intents doesn't resume my activity properly

2010-11-23 Thread umakantpatil
I'm integrating twitter OAuth in my app. He can share article on twitter by posting it. So when i click on option share button. I show user a TextView where he can add extra content. I got how to do OAuth from this tutorial

Re: [android-developers] Intents doesn't resume my activity properly

2010-11-23 Thread Kumar Bibek
The textview from which you want to read the text is in the same activity where onResume/onActivityResult is there? BTW, there is no such thing as onResumeActivity. You should be overriding the onActivityResult method. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed,

[android-developers] Intents in broadcastrecievers

2010-07-31 Thread run
hi, i wanted to place an intent in broadcastreceiver , by which i can call other applications. code public void onReceive(Context context, Intent intent) { //---get the SMS message passed in--- Bundle bundle = intent.getExtras(); SmsMessage[] msgs = null;

[android-developers] Intents to play video on YouTube App

2010-05-24 Thread Yenchi
Hi All, I am wondering if anyone know there's any documentation on what intent does the YouTube App takes? I believe YouTube App doesn't support youtube playlist and I am trying to fill that gap by parsing the YouTube playlist feed into individual video IDs and feed them to YouTube App.

[android-developers] Intents problem

2010-05-07 Thread Esdras Beleza
Hi, I have a widget that talks with an activity from my application. When I click in a button on my widget, it sends an intent to my application main activity, that handles it and shows a dialog. My problem is that if I go to another application, alternate between applications, go to home

[android-developers] intents getting incrementing each time received?

2010-03-01 Thread draf...@gmail.com
Hi all, I have started using custom intents in my application and I have come across a bit of a problem. When I send a custom intent I register a Broadcast Receiver and I catch the intent no problem. However problems seem to appear when I send the intent again, the Broadcast Reciever seems to

[android-developers] Intents

2010-02-15 Thread Christopher Walker
I am new to android development. To introduce myself to android development, I am writing a simple game involving vikings.In this game, I presently have to activities: one entitled Vikings for the menu and one entitled Campaign for the game itself. The menu is rather basic; it includes a button

Re: [android-developers] Intents

2010-02-15 Thread Mark Murphy
Christopher Walker wrote: I am new to android development. To introduce myself to android development, I am writing a simple game involving vikings.In this game, I presently have to activities: one entitled Vikings for the menu and one entitled Campaign for the game itself. The menu is rather

[android-developers] intents

2010-01-08 Thread dane131
i have two applications A and B (in different packages,but it doesn't matter).Application B is an sms application that i have made and contains one activity.This activity has a method called sendSMS(String number,String text).I want to call this method from application A and send an SMS without

Re: [android-developers] intents

2010-01-08 Thread Jason Proctor
if app B needs to be called via an intent, but has no UI, consider making it a Service? i have two applications A and B (in different packages,but it doesn't matter).Application B is an sms application that i have made and contains one activity.This activity has a method called

[android-developers] Intents for google maps

2009-11-29 Thread sreekanth nambu
Hi all I am developing a android project named Smart Google Maps .For my App, I need to use Google Maps Application which is built in with Android SDK 1.6.I need to call google Maps from my App. How could I do that? I am able to use call Phone dialer using intents from my Application.But I

[android-developers] Intents and navigating the GUI

2009-11-02 Thread chippie
Hey guys I've got an application that displays a list to the user ... I've also programmed a menu and when the user clicks on something in the menu this launches a new intent that in turn displays a new GUI. My problem is that I can't understand how I get navigate back to the main menu. So far in

[android-developers] Intents that used to work stopped working.

2009-10-11 Thread Keith Wiley
My app used to appear in Linda File Manager's send to list. I just realized this is no longer the case. I didn't update Linda File Manager. The only thing I can think of is that the phone recently automatically updated to Donut. Does anyone have any other theory why two apps that used to talk

[android-developers] Intents with SDK 1.5

2009-06-08 Thread André Charles Legendre
I am porting an application to SDK 1.5 and I have problems with Intents . In one activity I want to send an intent and I write : Intent intent = new Intent(REFRESH_SEARCH_LIST); intent.putExtra(searchResults, this.placeMarks); PendingIntent.getBroadcast(this.activity, 0, intent, 0); In another

[android-developers] Intents with SDK 1.5

2009-06-08 Thread André Charles Legendre
I am porting an application to SDK 1.5 and I have problems with Intents . In one activity I want to send an intent and I write : Intent intent = new Intent(REFRESH_SEARCH_LIST); intent.putExtra(searchResults, this.placeMarks); PendingIntent.getBroadcast(this.activity, 0, intent, 0); In another

[android-developers] Intents and Uris, for Ringtone Picker

2009-03-12 Thread droozen
I'd like to allow the user to choose a Ringtone from my application, that I will play later for an alarm. Looking at the javadocs, I see EXTRA_RINGTONE_DEFAULT_URI in RingtoneManager, and extra that, it says, is Given to the ringtone picker as a Uri. There is also an EXTRA_RINGTONE_PICKED_URI

[android-developers] Intents

2008-04-22 Thread WildLuka
Hi, I'm still in the process of grasping the true concept of intents. Surely I do understand that they are events and that they can propagate through the system. Obviously I'm not referring to the kind of intents used to fire Activities. Now, I'm trying to develop a local service, which one day