[android-developers] Re: What is the difference between onOptionsItemSelected and onMenuItemSelected?

2008-12-01 Thread Guillaume Perrot
Just use onOptionsItemSelected if you just want to react on the panel menu item clicks. onMenuItemSelected seems to always be called with the featureID FEATURE_OPTIONS_PANEL, the context menu is handled in another way. So overriding onOptionsItemSelected is simplier. onOptionsItemSelected must

[android-developers] Is it possible to start an remote activity which is loaded by classLoader

2008-12-01 Thread Ernest
Hello,everyone. I have a question: I can get an Activity class by classLoader which can't be declared in the local Manifest.xml.I want to start the activity in this way: Intent intent = new Intent(this, xxx.class);(xxx.class is the remote activity which loaded by classLoader)

[android-developers] Re: Whether is android compatible with GWT?

2008-12-01 Thread nanbo jia
On Mon, Dec 1, 2008 at 3:32 PM, [EMAIL PROTECTED] [EMAIL PROTECTED]wrote: I write a simple web application using GWT, it run successfully using IE and firefox, but It always return error when I browse using Android, I try to find out problem, but it seems It have not special thing. please

[android-developers] Re: Is it possible to start an remote activity which is loaded by classLoader

2008-12-01 Thread Dianne Hackborn
You don't need any kind of class, just set the desired ComponentName. On Mon, Dec 1, 2008 at 12:41 AM, Ernest [EMAIL PROTECTED] wrote: Hello,everyone. I have a question: I can get an Activity class by classLoader which can't be declared in the local Manifest.xml.I want to start the

[android-developers] Is there any documentation of RIL layer architecture in android

2008-12-01 Thread sunil kumar
Hi Is there any documentation available on net for RIL layer in android. Regards Sunil. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Returning to my application after a call ends

2008-12-01 Thread shimo...@gmail.com
Hi, Can't I do something while in the CALL_STATE notification callback ? It's being called no matter what the user did and what app he/she is in right now. I was able to launch a 3rd application (the snake game) from within that callback, but not launch 'myself'. Thanks. On Dec 1, 3:35 am,

[android-developers] Re: How to integrate c code with java code

2008-12-01 Thread Amit
I want to know that if i write some piece of code in any languagge may be C or even Java, how can i integrate it in android SDK. How can it be called like other android APIs. For example, if i write some framework like video playback frame work in any language, how can it be integrated with

[android-developers] Wifi Ip Address

2008-12-01 Thread Andrea
How can I get the Ip address assigned by a WiFi network to which my device is connected? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: NumberPicker

2008-12-01 Thread Guillaume Perrot
The only way I know is to extract it from the android source code. http://source.android.com/ Have fun ^^ On Nov 30, 8:47 pm, bw [EMAIL PROTECTED] wrote: Hi, Is there a way to get the NumberPicker widget used in Date and Time pickers? -Ben

[android-developers] How to i detect the click on task bar.

2008-12-01 Thread ena
I want to know how to detect the click on task bar??? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] Re: Media Player Error -38,0

2008-12-01 Thread David Given
Mr Chaloo wrote: Hi, Have you found the solution of this error? I am getting the same problem with mid sound playing. Please reply me asap. This is the generic 'I'm confused, help me' error code. -38 corresponds in the source code to 'unknown error'. It seems to appear for a whole variety of

[android-developers] Long click on list activity item

2008-12-01 Thread Thao
Hi all, I have an Activity that implements a ListActivty. In there, I have a list of item that is wrapped by a custom adapter. I would like to enable long click on each item in my list, but I can't figure out how to do this...Could someone give an example please ? Thank.

[android-developers] Re: How about making an internet-less GPS system?

2008-12-01 Thread Fred Grott(shareme)
Thank you Xavier I did not realize that ..it helps me in my Loopt clone for Android :) On Nov 30, 7:28 pm, Xavier Mathews [EMAIL PROTECTED] wrote: You Download The Whole Map It Will Work It Also Works With Your GPS. Great On BlackBerrys! On 11/30/2008, joshv [EMAIL PROTECTED] wrote:

[android-developers] Re: How about making an internet-less GPS system?

2008-12-01 Thread Xavier Mathews
No Problem :) On 12/01/2008, Fred Grott(shareme) [EMAIL PROTECTED] wrote: Thank you Xavier I did not realize that ..it helps me in my Loopt clone for Android :) On Nov 30, 7:28 pm, Xavier Mathews [EMAIL PROTECTED] wrote: You Download The Whole Map It Will Work It Also Works With Your GPS.

[android-developers] Re: Android on iPhone

2008-12-01 Thread David Given
Robert Green wrote: [...] 1) Like Romain said - Android doesn't need multiple cores nor does the G1 have them. The G1 has a multicore CPU in that it contains a discrete CPU and GPU but not 2 CPU cores. The iPhone has 1 ARM CPU (same arch as G1) and 1 discrete GPU. People may be being

[android-developers] Re: When an app needs Google account credentials...

2008-12-01 Thread Fred Grott(shareme)
What Xavier is saying is that a server side code is needed to provide the token currently Possible solutions is find a 3rd party that already provides a token via a open 3rd party api, however you may not find one that is integrated with Google account identity I know in my own example of Loopt

[android-developers] Re: Media Player Error -38,0

2008-12-01 Thread for android
David is right.I was getting this error,when in one of the conditions,I was pausing the player,when the player was not playing.. On Mon, Dec 1, 2008 at 5:42 PM, David Given [EMAIL PROTECTED] wrote: Mr Chaloo wrote: Hi, Have you found the solution of this error? I am getting the same

[android-developers] Re: When an app needs Google account credentials...

2008-12-01 Thread dar
I'm looking for this as well, to provide access to my google app engine applications. I'm guessing they store the session authorization token from AuthSub somewhere (take a look at AuthSub here: http://code.google.com/apis/accounts/index.html). It's probably just a matter of understanding where

[android-developers] (Service == Process)?

2008-12-01 Thread patrick
Hi guys, I am a little confused about the difference between services and processes in Android. From what I understood: - each package may run as one process - therefore an activity is a process - a service runs in the main thread of an activity (therefore it needs to run in the same

[android-developers] Re: When an app needs Google account credentials...

2008-12-01 Thread Fred Grott(shareme)
Looks like the first and second options listed.. Thanks for the link.. Key question is are the hooks to those library apis already in Android Sdk? On Dec 1, 7:29 am, dar [EMAIL PROTECTED] wrote: I'm looking for this as well, to provide access to my google app engine applications.  I'm

[android-developers] Re: SharedPreferences problem

2008-12-01 Thread dar
Is there an exception thrown if the ... next time it is read it is unable to parse the truncated file.? If so, we could catch the exception and explain to the users that an error occurred reading the preferences, therefore we need to collect them again, or reset their preferences to the

[android-developers] Re: Windows driver for HTC G1 phone

2008-12-01 Thread Jon Webb
On the 64-bit driver issue, http://forum.xda-developers.com/showthread.php?t=446274 gives a 64-bit version of the Android USB driver. The driver is unsigned, so you have to run Vista in test mode if you want to use it. Also, I saw somewhere else on the forum Dan Morrill saying that Android is

[android-developers] unknown socket error -1

2008-12-01 Thread sal
1. Can anyone point me to simple TCP client/server program on android ?? 2. Whenever i try to create socket with port and IPaddress i get IOException which points to a SocketException which gives a message unknown socket error -1 , it would be nice if someone could tell the root cause for this

[android-developers] Re: Fwd: Supported unicode characters

2008-12-01 Thread Mike Reed
U+2603 is not currently in the android fonts. FYI - The default font is DroidSans.ttf (when you don't specify a typeface object). All of the UI fonts (there are 7 currently) in turn reference DroidSansFallback.ttf for characters that they don't contain. mike On Nov 26, 2008, at 8:59 PM,

[android-developers] Re: SharedPreferences problem

2008-12-01 Thread joshv
Ok, then SharePreferences should be ok in multi-threaded applications. Regarding process death and preferences, I thought the same thing so I scaled back my persistence code to only save preferences in an onPause (). It was my understanding that even when a task is killed, the onPause is called

[android-developers] Re: Standard widget styles

2008-12-01 Thread Andriy Zakharchuk
Yep, that makes sense. Thanks. However, smth like table of styles still would be useful (style and screenshot). On Nov 26, 4:23 pm, Thao [EMAIL PROTECTED] wrote: Hello, What I could advise is to donwload the android source code. You have the source of contact application. It would help a

[android-developers] Re: Getting information from the Internet

2008-12-01 Thread loty
Look into HttpClient and related classes Here is very simple code to get a web page HttpClient client = new DefaultHttpClient(); HttpGet getMethod = new HttpGet (strURL); HttpResponse response = client.execute(getMethod); String res =

[android-developers] GridView

2008-12-01 Thread Andriy Zakharchuk
Hello all, I have a question about grid view: is there any chance to stretch GridView vertically. What I'm trying to do is to create a screen with a limited number of items (6). I need exactly 2 columns and 3 rows (or 3x2 in landscape mode) to fill all the screen. In a grid view I can control

[android-developers] Re: unknown socket error -1

2008-12-01 Thread Huebi
You need to add the INTERNET permission to your app in the Manifest. That should solve the issue On 1 Dez., 15:27, sal [EMAIL PROTECTED] wrote: 1. Can anyone point me to simple TCP client/server program on android ?? 2. Whenever i try to create socket with port and IPaddress i get

[android-developers] Re: Starting new Activity vs. setContentPane(newView)

2008-12-01 Thread loty
I'm also not sold on the new Activity for each new screen framework. Unless your new screen is very generic and can be reused by other applications (I think this is a very very small minority of all screens) you are better off using setContentView and/or ViewFlippers. I first went down the road

[android-developers] Psssing keys for each value in a list view to another view

2008-12-01 Thread AnuR
hi, I have a list view to list some categories. I need to list the products under each category in a new list. I used arrayList to the adapter, I am able to list the category names . but I cant pass the keys (categoryIds) to the next view for getting the products. Please help me in this

[android-developers] Re: Theme setting for all applications

2008-12-01 Thread Paul Anders
Thanks for the reply:)I understand that at this point there is no support for theme switch application which enables an end-user to choice theme from multiple themes like Windows OS I am looking forward to this feature to be delivered from Google. On the other hand, even if we cannot switch

[android-developers] Re: how to start the default music application from my own application

2008-12-01 Thread Payal Amin
hi Peli, I tried that code where you have to pass the song number from you content provider Uri.*withAppendedPath*(MediaStore.Audio.Media.*EXTERNAL_CONTENT_URI*,1); But what if i want to pass the name of the song with complete path from sdcard? Because sending the song id gives me wrong

[android-developers] sdk 1.0 failed to correctly run code

2008-12-01 Thread Mina Ramses
I tried the code below in eclipse using android sdk 1.0, but always can't get the application to run correctly neither got any of the testing statements in the logCat, i used to set appServer as the default activity and tried to run using Run configurations, i'm asking what's wrong and if i have

[android-developers] Re: OutOfMemoryError when switching orientation

2008-12-01 Thread Noam Wolf
I'm not explicitly passing context around at all but I am using a ContentProvider which calls getContext()... is that something I should be handling too? On Dec 1, 1:23 am, Romain Guy [EMAIL PROTECTED] wrote: Always delete references to Context or anything that you passed the context to on

[android-developers] Exchanging Messages between services containing Bundles with self-developed Parcelables

2008-12-01 Thread nimbus83
Hello, It try to exchange objects of type android.os.Message between services in different processes. I add a bundle to each message. This bundle contains MyMessage object, which implements the Parcelable interface. I do it like this: Message message = new Message(); Bundle bundle = new

[android-developers] Android Email Notification

2008-12-01 Thread [EMAIL PROTECTED]
Having read several times the topic on Push Notification Techniques bellow, I still wonder how the current email notification technique on android works?!

[android-developers] Re: Android Camera Preview Filter Using Camera.PreviewCallback.onPreviewFrame

2008-12-01 Thread Dave Sparks
The G1 preview format is YUV 420 semi-planar (U and V are subsampled by 2 in both X and Y). The Y plane is first, followed by UV pairs - I believe the U sample comes first in the pair. Technically it's YCbCr 420 semi-planar, but very few people use that term. On Nov 26, 6:27 pm, dmanpearl

[android-developers] Re: Guitar Tuner

2008-12-01 Thread Dave Sparks
The current audio API's would make this very challenging. Look for improvements in a future SDK. On Nov 29, 12:10 pm, Ameer Ashanti [EMAIL PROTECTED] wrote: Is there anyone developing a guitar tuner for the android platform? or would that even be possible?

[android-developers] searchs in Android

2008-12-01 Thread Peterman
Hi Someone know how to do a search in android? I would like make a search that it give me the coordenates of the locations founded. I heard about the class Geocoder but I don't know to use it or it this class is the solution. thanks a lot --~--~-~--~~~---~--~~

[android-developers] Re: Java App UI / Engine C split query

2008-12-01 Thread [EMAIL PROTECTED]
DigitalAirways ( www.digitalairways.com ) use a kind of software bridge allowing all the Kaleido applications (that are mainly in C/C+ +) to run on Android with very good perfs. I suppose that you can get in touch with them to get more information. Franck On Nov 27, 6:52 pm, Mungbeans [EMAIL

[android-developers] Re: How to enable screen transition when launching Activity

2008-12-01 Thread Jeremy Bornstein
A relevant question might be: if an external developer contributed high-quality inter-activity transition code to the open source Android codebase, would it be likely to be accepted? I do not believe that such a feature is covered by any patents, but it may be relevant that Google CEO Eric

[android-developers] Re: How to integrate c code with java code

2008-12-01 Thread [EMAIL PROTECTED]
Hi Amit, DigitalAirways (www.digitalairways.com) does this to allow all the Kaleido applications to run on Android with great performances and very limited porting effort. Franck On Nov 28, 11:00 am, Amit [EMAIL PROTECTED] wrote: Hello friends, Can u plz tell that if i want to write

[android-developers] Android screen resolution limit

2008-12-01 Thread hill....@gmail.com
Hi, I have searched this group but couldn't find the answer: What's the largest screen resolution android support right now? We are going to port android on rather large size of scree and the resolution is about 1024X800. Can Android supports this? If not, is there any setup or configuration file

[android-developers] Re: Anyone looking at Cell Broadcast on the G1?

2008-12-01 Thread praks
Hello, I dnt have an android phone with me. So cannot really check out the cell broadcast messages. But can we capture these messages in our application? Is there any API? Thanx... On Nov 25, 6:42 pm, Mauricio Mayer Soares [EMAIL PROTECTED] wrote: OK but, how to enable this feature on

Re: Fw: [android-developers] Re: Android and bluetooth

2008-12-01 Thread supernova
I need to use SPP (Serial Port Profile) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] How to use SSL23 with HttpsURLConnection ?

2008-12-01 Thread greata...@googlemail.com
Hello I'm willing to connect to a HTTPS server who only operates with the SSLv23 protocol. But, using Android 1.0 SDK, all attempt to connect to the server using HttpsURLConnection fails with the following exception (see at the end of this message for complete trackback): 12-01

[android-developers] Debug Boot complete Broadcast event on phone

2008-12-01 Thread mnj
Hi, I have a class BootTest which extends BroadcastReceiver. I want to put a breakpoint in onReceive method and debug from Eclipse IDE when phone(G1) boots up. What I observe is that the onReceive() method is getting called but the control is not coming to the breakpoint. Probably the debugger

[android-developers] Re: socket exception error

2008-12-01 Thread RichardS
On 1 Dec, 11:44, sal123 [EMAIL PROTECTED] wrote: Hi All, I am getting a socketexception , when i am trying to create a new socket. may i know the reason for this Have you added the permission to your AndroidManifest.xml? Something like: uses-permission

[android-developers] Tabactivity pass exras data can't work

2008-12-01 Thread ppy
I have main activity Mainact,it's a listview. click the listview,get the item id and putExtras(bundle) to second activity. the second tabactivity work fine. my tabactivity have tab1,tab2,tab3,and tab3 is itemlist. how can i get main activity's clicked item id from tab3?

[android-developers] ice-e on Android?

2008-12-01 Thread supernova
Is ist possible to run Ice-e on Android? Maybe with J2ME MIDP Runner? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com

[android-developers] Re: Checking API: checkapi-last Error when compiling android source code after repo sync in 11/23/2008 Beijing Time

2008-12-01 Thread dakman
I also got the same issue when I did the build Nov29,2008 on my ubuntu, after the repo sync, I did nothing else except make. I searched the google groups but did not find the fix for it. could someone guide me where I can find the discussion on it? thanks. error 17: Field

[android-developers] Re: Comment spam in android market :(

2008-12-01 Thread SASS Digital
I have to say I agree - we have racist abuse on our comments and as far as I can tell there's no way to remove it. We've had numerous emails from people asking us to remove the comment but we're powerless to do anything! Google - please take note, allow developers to mark comments as abusive!

[android-developers] Re: Ringtone.isPlaying problem

2008-12-01 Thread Dave Sparks
The phone application uses the RingtoneManager to play ringtones, so it definitely works in that application. That doesn't mean it doesn't have a bug, but I would suggest you check your code first. On Nov 29, 3:41 pm, Selmi [EMAIL PROTECTED] wrote: hi, i hope there is someone who has some

[android-developers] Re: Sending DTMF

2008-12-01 Thread Dave Sparks
The documentation for the ToneGenerator class clearly states that it is for the purpose of generating tones on the near end. This is so the user hears the tones when they push the digits on the keypad. If you want to generate DTMF tones on the far end, you need to use the PhoneManager API. On

[android-developers] Re: Error generating final archive: null

2008-12-01 Thread nialloc
Running eclipse as sudo should solve this issue On Nov 18, 10:16 pm, Alam [EMAIL PROTECTED] wrote: When I save the manifest file I get [2008-11-18 22:13:18 - DeleteMe]Errorgeneratingfinalarchive:null I am using Eclipse Ganymede on Ubuntu 8.04. Any ideas why I am getting thiserror. Thanks

[android-developers] Re: MediaPlayer seek on startup

2008-12-01 Thread Dave Sparks
I can't think of any alternative solution at this time. The code that handles this is in the OpenCore engine and not something you can address with a Java API. Perhaps this is something we can address in a future release. On Nov 28, 1:22 pm, David Given [EMAIL PROTECTED] wrote: David Given

[android-developers] Can one application removes files of other application?

2008-12-01 Thread John Jiang
I tried following methods, but looks like all of them are infeasible: 1) From Android official documents, I did't find proper permission to be added to application manifest; 2) I want to use 'setuid su' security hole, but that is fixed on Android RC30. Is it possible to remove files of other

[android-developers] Re: when will android support/have Speech Recognition System??

2008-12-01 Thread Dave Sparks
There is a speech reco engine in Android 1.0, but it is limited to use in the voice dialer. The source code is available on source.android.com. On Nov 27, 6:18 am, Hui Tianshu (Risker) [EMAIL PROTECTED] wrote: does anyone know any latest update for voice recognition in Android

[android-developers] Re: mp3s for games?

2008-12-01 Thread Dave Sparks
Decoding a single MP3 for a background audio track is not too bad. On the G1, OGG is a better format, less memory overhead and startup latency, plus you get seamless looping which MP3 does not do. I don't recommend using compressed audio like MP3 or OGG if you have lots of sound effects, because

[android-developers] Re: Guitar Tuner

2008-12-01 Thread Robert Green
I think it would be ok if all you wanted is an app that can play EADGBE tones. Just make 6 media players, set them to loop and have the UI control starting and stopping them. If you want a tuner that can listen to the guitar and display the tuning like a real guitar tuner does, that will not be

[android-developers] Re: Problems with ListView using buttons on each row

2008-12-01 Thread Nickname
For your reference, one way to work around this constraint of Android ListView is to redirect an onClick event on a listview rwo to the button on the row by means of calling performClick() in the onClick() of the GetView() of the listview adapter class. On Nov 29, 7:52 am, Stefan [EMAIL

[android-developers] Re: Is there any documentation of RIL layer architecture in android

2008-12-01 Thread Xavier Mathews
http://www.mail-archive.com/android-developers@googlegroups.com/msg12887.html Other than this i don't think sonot yet! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED]

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Xavier Mathews
IP Address? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself. On Mon, Dec 1, 2008 at 4:49 AM, Andrea [EMAIL

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Ed
You could use the browser to access sites like http://www.showipaddress.com/ On Dec 1, 12:18 pm, Andrea [EMAIL PROTECTED] wrote: Yes, the ip address that the dhcp server of a wifi net assigns to my device. Xavier Mathews wrote: IP Address? Xavier A. Mathews Student/Browser

[android-developers] Re: mp3s for games?

2008-12-01 Thread Xavier Mathews
Was there any other phone you wanted to do this for? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself. On

[android-developers] Re: (Service == Process)?

2008-12-01 Thread Mark Murphy
patrick wrote: I am a little confused about the difference between services and processes in Android. From what I understood: - each package may run as one process At minimum. A package might have more than one process, though that is discouraged. - therefore an activity is a process

[android-developers] Re: ice-e on Android?

2008-12-01 Thread Xavier Mathews
Possible yes but with runner i don't think so! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself. On Mon,

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Xavier Mathews
I am nt sure you can change it. Which IP? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself. On Mon, Dec 1,

[android-developers] Re: Parsing RSS feeds, encoding problems

2008-12-01 Thread Xavier Mathews
Ok Great! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself. On Mon, Dec 1, 2008 at 12:58 AM, ChisterNordvik

[android-developers] Re: (Service == Process)?

2008-12-01 Thread Dianne Hackborn
On Mon, Dec 1, 2008 at 5:41 AM, patrick [EMAIL PROTECTED] wrote: - therefore an activity is a process - but from what I know a service uses another address space than the hosting activity If there is anything in http://code.google.com/android/intro/appmodel.htmlor the other docs leading

[android-developers] Re: How to enable screen transition when launching Activity

2008-12-01 Thread Xavier Mathews
This needs to go to the issue tracker! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself. On Sun, Nov 30,

[android-developers] Re: searchs in Android

2008-12-01 Thread Xavier Mathews
How To Search Using Android? Search On Android? Search In Android? Which One? I am not understanding the question! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of

[android-developers] Re: Android screen resolution limit

2008-12-01 Thread Dianne Hackborn
Hi, please post these types of questions to android-porting, thanks! On Sun, Nov 30, 2008 at 7:30 PM, [EMAIL PROTECTED] [EMAIL PROTECTED]wrote: Hi, I have searched this group but couldn't find the answer: What's the largest screen resolution android support right now? We are going to port

[android-developers] Re: Can one application removes files of other application?

2008-12-01 Thread Dianne Hackborn
On Mon, Dec 1, 2008 at 3:56 AM, John Jiang [EMAIL PROTECTED] wrote: 2) I want to use 'setuid su' security hole, but that is fixed on Android RC30. This wasn't usable by applications, anyway, you had to press the physical keys. Is it possible to remove files of other application? No. --

[android-developers] Re: Checking API: checkapi-last Error when compiling android source code after repo sync in 11/23/2008 Beijing Time

2008-12-01 Thread Dianne Hackborn
Please move this to one of the open-source groups. On Sun, Nov 30, 2008 at 5:34 PM, dakman [EMAIL PROTECTED] wrote: I also got the same issue when I did the build Nov29,2008 on my ubuntu, after the repo sync, I did nothing else except make. I searched the google groups but did not find the

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Andrea
Yes, the ip address that the dhcp server of a wifi net assigns to my device. Xavier Mathews wrote: IP Address? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear

[android-developers] Re: Theme setting for all applications

2008-12-01 Thread Dianne Hackborn
You can modify any of the resources however you want if you are rebuilding the system. These will be used without having to do anything. Note that we are calling this skinning and generally does NOT involve modifying theme resources; theme resources are used by applications to specify the

[android-developers] Re: How to draw an image on top of another drawable?

2008-12-01 Thread Xavier Mathews
Yeah you can't do that even with xml when the program was written it was scripted somewhere in there so its kinda like blocking and other abnormal adjustments to itself from and user or program exe. The only way to do this would be too rewrite it on windows platform or hack it using a unblocking

[android-developers] Re: Theme setting for all applications

2008-12-01 Thread Dianne Hackborn
Btw, discussion about modifying the open-source platform should be moved to one of the open-source groups. On Mon, Dec 1, 2008 at 11:09 AM, Dianne Hackborn [EMAIL PROTECTED]wrote: You can modify any of the resources however you want if you are rebuilding the system. These will be used without

[android-developers] Re: SharedPreferences problem

2008-12-01 Thread Dianne Hackborn
On Mon, Dec 1, 2008 at 5:59 AM, dar [EMAIL PROTECTED] wrote: Is there an exception thrown if the ... next time it is read it is unable to parse the truncated file.? If so, we could catch the exception and explain to the users that an error occurred reading the preferences, therefore we need

[android-developers] Re: Theme setting for all applications

2008-12-01 Thread Xavier Mathews
Well It Was Not About Open Source at first but now it is. Still Android is an open source! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases

Re: Fw: [android-developers] Re: Android and bluetooth

2008-12-01 Thread Robert Green
I would like to add multiplayer support to Light Racer using bluetooth so whatever allows device discovery, pairing and then streaming transfer is what I need :) On Dec 1, 7:20 am, supernova [EMAIL PROTECTED] wrote: I need to use SPP (Serial Port Profile)

[android-developers] Re: SharedPreferences problem

2008-12-01 Thread Dianne Hackborn
On Mon, Dec 1, 2008 at 6:36 AM, joshv [EMAIL PROTECTED] wrote: Regarding process death and preferences, I thought the same thing so I scaled back my persistence code to only save preferences in an onPause (). It was my understanding that even when a task is killed, the onPause is called

[android-developers] Re: Exchanging Messages between services containing Bundles with self developed Parcelables

2008-12-01 Thread Xavier Mathews
You Can't Reprogram it...What are you trying to do? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself.

[android-developers] Re: Camera Settings

2008-12-01 Thread Mark K
These features are supported by the G1 QCamera and driver, but they haven't been implemented at the API level for Android 1.0, hopefully some of these features will be supported in Android version 1.1. Mark On Nov 30, 1:47 pm, Xavier Mathews [EMAIL PROTECTED] wrote:

[android-developers] Re: HTTP compression lost when using 3G connection

2008-12-01 Thread Michael
If by Browser you mean the web browser on an Android device then no, it's just a web browser. But of course you can write your own application for Android that does TCP/IP sockets to connect to some other service. (also, maybe post a new thread next time?)

[android-developers] RatingBar ratingBarStyleSmall

2008-12-01 Thread chapp007
I am trying to put a RatingBar in a ListView with some text to the left. I need the RatingBar to be small and read-only. I have looked in the R.attr class and there seems to be a ratingBarStyleSmall attribute. I have no idea how to set this attribute. I have tried RatingBar

[android-developers] What happened to this API?

2008-12-01 Thread AlCapwn
I was looking at the Email app in Eclipse, but it seems some packages have been removed from the SDK, especially android.text.util.Regex so Eclipse starts spitting out errors. Anyone know what the alternative to this API is or what happened to the regex package? Take a look at MessageView.java

[android-developers] What happened to this API?

2008-12-01 Thread AlCapwn
I was looking at the Email app in Eclipse, but it seems some packages have been removed from the SDK, especially android.text.util.Regex so Eclipse starts spitting out errors. Anyone know what the alternative to this API is or what happened to the regex package? Take a look at MessageView.java

[android-developers] return types for java call from javascript with addjavascriptinterface

2008-12-01 Thread denzel
Hi, I posted this message earlier in the Android beginners group, but without any response. Maybe someone here could help me out. WIth the addJavaScriptInterface method in WebView it's possible to access Java methods from javascript. I'm wondering which types can be returned by these methods?

[android-developers] Re: When an app needs Google account credentials...

2008-12-01 Thread Semprebon
The first option (Client Login API) still requires your app to get the google userid and password from the user. The second option (OAuth/ AuthSub) only applies to web apps (although I suppose you could launch a browser session). What would be real nice from my standpoint would be some way to

[android-developers] Issues while using the VideoView

2008-12-01 Thread Nilangini
Hi, 1. I have used the following code related to VideoView. mVideoView = (VideoView)findViewById(R.id.myvideoview); mVideoView.setVideoPath(strVideoURL); mVideoView.setMediaController(new MediaController(this)); This code is called from OnCreate as well as from a button click event. I do

[android-developers] Re: Camera Settings

2008-12-01 Thread Xavier Mathews
Ok thxs for letting me know! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself. On Mon, Dec 1, 2008 at 1:25

[android-developers] Re: RatingBar ratingBarStyleSmall

2008-12-01 Thread Mark Murphy
chapp007 wrote: I am trying to put a RatingBar in a ListView with some text to the left. I need the RatingBar to be small and read-only. I have looked in the R.attr class and there seems to be a ratingBarStyleSmall attribute. I have no idea how to set this attribute. It's a style, not an

[android-developers] Re: RatingBar ratingBarStyleSmall

2008-12-01 Thread Xavier Mathews
When using the rating bar do you have to register certain sites for it to rate or is it automatic? And i think you need a code form Google to get it on a website that you want and i thought it rates by search engine standards! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master

[android-developers] Re: Getting information from the Internet

2008-12-01 Thread Xavier Mathews
HttpClient client = new DefaultHttpClient(); HttpGet getMethod = new HttpGet (strURL); HttpResponse response = client.execute(getMethod); String res = EntityUtils.toString(response.getEntity()); Who's Code Would That Be? And what about the difference between http and htp is

[android-developers] Re: RatingBar ratingBarStyleSmall

2008-12-01 Thread Mark Murphy
Xavier Mathews wrote: When using the rating bar do you have to register certain sites for it to rate or is it automatic? RatingBar is a widget, like Button or EditText or ListView. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_

[android-developers] Re: GridView

2008-12-01 Thread Xavier Mathews
Where are you trying to stretch this? I believe you can if you are talking about android i can go see for you. Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a

[android-developers] Re: RatingBar ratingBarStyleSmall

2008-12-01 Thread Xavier Mathews
Right but are there add-on rate bars? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only increases fear of the thing itself. On Mon, Dec 1, 2008

  1   2   >