[android-developers] Re: jchat4android 1.3 released!

2009-01-16 Thread Semeria Stefano
without an apk to directly link to this isn't possible because we only list apps which users can install directly to their android device, and users can't install apks parcelled in zip files without additional steps. Al. Semeria Stefano wrote: > Hi Al, > > we actually did it.

[android-developers] Re: jchat4android 1.3 released!

2009-01-16 Thread Semeria Stefano
: android-developers@googlegroups.com Cc: android-beginn...@googlegroups.com; jade-deve...@avalon.tilab.com Subject: [android-developers] Re: jchat4android 1.3 released! Any reason you're not publishing an installable apk file? Al. Semeria Stefano wrote: > > We are proud to announce

[android-developers] jchat4android 1.2 released!

2008-10-21 Thread Semeria Stefano
Dear Android developers, We are proud to announce the release of jChat4Android 1.2 working with ANDROID SDK 1.0 jChat4Android is a chat application for the Android platform based on Jade agent framework. It shows how Jade can effectively be used in a peer-to-peer context on mobile devices. In

[android-developers] Re: Questions about using GTalk for P2P communication

2008-06-11 Thread Semeria Stefano
comment on this. Given that the Android GTalk service uses a specific GTalk protocol rather than 'standard' XMPP you probably can't get away with your own Jabber server--though it might be worth a try. Cheers Reto On 9 Jun, 11:04, Semeria Stefano <[EMAIL PROTECTED]> wrote: > Hi a

[android-developers] Questions about using GTalk for P2P communication

2008-06-09 Thread Semeria Stefano
Hi all, I need to evaluate Gtalk as p2p communication protocol for future development. I read the documentation and did some basic GTalk applications From the info I collected I have the following questions: 1. Every GTalk application shall need a valid gmail account to be able to commun

[android-developers] Receiving broadcast null in application shutdown

2008-05-13 Thread Semeria Stefano
Hello, My application is using a mocked location provider and an intent receiver to receive updates. During shutdown I first stop the location updates with LocationManager.removeUpdates(), then I deregister the intent receiver. I randomly receive the following error: I/jade.util.Logger( 1101

[android-developers] Adding icon in activity titlebar

2008-05-13 Thread Semeria Stefano
Hello, I would like to add an icon into activity titlebar. My code is as follows: public void onCreate(Bundle icicle){ super.onCreate(icicle); requestFeature(Window.FEATURE_RIGHT_ICON); setFeatureDrawableResource(Window.FEATURE_RIGHT_ICON,R.drawable.myicon); setContentView(

[android-developers] Re: How to customize notification layout

2008-04-30 Thread Semeria Stefano
setters for the properties of > Notification, also it is afaik not well (if at all) documented, so > there's a chance that what you are trying to do is not supported > (yet). > > hope this gives you an idea, > cheers > F > > On 28 Apr., 10:05, Semeria Stefano > >

[android-developers] How to customize notification layout

2008-04-28 Thread Semeria Stefano
Hello, I was wondering if it is possible to customize the layout of the notifications on the status bar. If they're elements in a list there should be a way to customize their look, but I'm not sure how to do it, and also if I'm allowed to Please let me know something Thanks for your help.

[android-developers] How to compute the size of a string in pixel

2008-04-24 Thread Semeria Stefano
Hello I need to compute the size of a string I'm drawing with Canvas.drawText() in pixels, to be able to surround it with a rectangle. Do you know if there's a simple way to get the size of the string according to the size of the currently used font? Thanks a lot for your help. Regards, Stef

[android-developers] Using notifications to switch between different already opened activities

2008-04-11 Thread Semeria Stefano
Hi all, I am working on an IM application for android. Currently I have one main activity showing a list of contacts and another activity (let's call it ChatActivity) for handling conversation. When the user starts a chat with a contact I open the chat activity with the startActivity firing an

[android-developers] Sending SMS

2008-04-07 Thread Semeria Stefano
Hello, can you confirm that at the moment there's no ready-made activity for handling SMS-sending? I would like to support SMS sending... Can you provide some references?? Thanks a lot Regards, Stefano --~--~-~--~~~---~--~~ You received this messag

[android-developers] Is it possible to use multiple selection list?

2008-04-07 Thread Semeria Stefano
Hi all, I need a list view that can handle the selection of multiple items at the same time. Is that possible? Thanks a lot. Regards, Stefano --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "And

[android-developers] Re: Resuming not visible activities using intents

2008-04-04 Thread Semeria Stefano
prile 2008 10.22 To: Android Developers Subject: [android-developers] Re: Resuming not visible activities using intents Use service instead of activity:) On 4月4日, 下午4时16分, "Semeria Stefano" <[EMAIL PROTECTED]> wrote: > Hi all, > > Is it possible to resume a background a

[android-developers] Resuming not visible activities using intents

2008-04-04 Thread Semeria Stefano
Hi all, Is it possible to resume a background activity using an intent? When I register a notification in the status bar and clicked on it an Activity is fired, but it's always a new one... I would need a way to reuse one in background already on the stack. Please help. Thanks a lot. --~

[android-developers] Re: Finish Activity(Urgent)

2008-04-03 Thread Semeria Stefano
Hi, I am not an expert but I think that you should be able to call the Activity.finish() method just after you call the startSubactivity for C in Activity B. If I understood correctly the Forwarding.java sample in samples\ApiDemos\src\com\google\android\samples\app performs exactly what you ne

[android-developers] Choosing the right activity from a notification

2008-04-03 Thread Semeria Stefano
Hi all, I am working on an Instant Messaging application. Any time the client receives a message from a new contact a new notification is added in the statusbar. I would like to handle multiple conversations at the same time. Basically the user should click on the desired notification on the

[android-developers] Re: Finding position of a screen point

2008-04-01 Thread Semeria Stefano
opers Subject: [android-developers] Re: Finding position of a screen point In that case, I think it's easier to calculate the midpoint using to lat/lng of every point so the result of the calculation will be a lat/ lng coordinate. On Apr 1, 4:41 pm, "Semeria Stefano" <[EMAIL

[android-developers] Re: Finding position of a screen point

2008-04-01 Thread Semeria Stefano
opers] Re: Finding position of a screen point Use the PixelCalculator class On Apr 1, 2:28 pm, "Semeria Stefano" <[EMAIL PROTECTED]> wrote: > Hi all, > > In my application I am showing a MapView with a cluster of moving > points. I need to seldom center the map on the

[android-developers] Finding position of a screen point

2008-04-01 Thread Semeria Stefano
Hi all, In my application I am showing a MapView with a cluster of moving points. I need to seldom center the map on the midpoint of the cluster. I am able to compute the midpoint position in screen coordinates (by averaging the positions of all points of the cluster before drawing) but I nee