[android-developers] Re: Debug android source code

2008-12-05 Thread Dave Sparks
This list is for discussing application development. Discussion of porting, extending, and debugging the Android source code should take place on the open source mailing lists (android-platform, android- framework, android-porting, or android-kernel). On Dec 4, 11:50 pm, Yogi [EMAIL PROTECTED]

[android-developers] Re: Eclipse Error while adding ddms

2008-12-05 Thread Anonymous Anonymous
Hi Ralf, Thanks again.. 1. Ran create_ddms_symlink.sh 2.In eclipse File - import-plugins and fragments -plugin location .../development/tools/eclipse/plugins..ide.eclipse.ddms 3.Added plugin succesfully 4.gettign the below error... :( am i doing something really stupid !! :( (*in the doc says

[android-developers] Re: Notification details Activity never receives Intent used to fire it

2008-12-05 Thread Guillaume Perrot
Maybe FLAG_CANCEL_CURRENT does cancel the current intent if it has the same uri, action but also the same request code (since it's part of the identity) ? 2008/12/5 Dianne Hackborn [EMAIL PROTECTED] FLAG_CANCEL_CURRENT will almost certainly work. If you look at the code, if you have the flag

[android-developers] Re: Network access problem on ubuntu

2008-12-05 Thread Brian
Are they both have the APN record configured? If yes, then I have no idea so far. Maybe someone else could help on this... Regards On 12月5日, 上午11時33分, taosinker [EMAIL PROTECTED] wrote: Brian: Thanks for your response. After I double check the issue, I found more strange things. If I lunch

[android-developers] Re: Largish HTTP Post vs. ANR

2008-12-05 Thread Dianne Hackborn
You can look in I believe /data/anr/traces.txt to find a dump of the stacks of all processes and threads when the ANR happened, which should tell you what your thread was stuck doing at the time. On Thu, Dec 4, 2008 at 4:27 PM, [EMAIL PROTECTED] wrote: Yes, I've already coded that up and it

[android-developers] Re: How to explicitly establish connection to the underlying GPRS or WiFi?

2008-12-05 Thread Marcio Alexandroni
Yes, I noticed that too, I also work with PalmOS and Windows Mobile development and you have all the control over the network connections. Android stays connected on any network it finds, Mobile Data Network or WiFi. If you have a WiFi network registered and you reach its covered area, it

[android-developers] Re: Notification details Activity never receives Intent used to fire it

2008-12-05 Thread Matthias
Dianne, On 5 Dez., 00:45, Dianne Hackborn [EMAIL PROTECTED] wrote: FLAG_CANCEL_CURRENT will almost certainly work.  If you look at the code, if you have the flag set it just removes any existing intent and creates a whole new pending intent with the intent you provide.  The returned

[android-developers] Re: OpenGL context = how to load non power of two dimension bitmap?

2008-12-05 Thread Guian
I found this way to used non power of two size picture as a texture and the textured is filled with black but it doesn't matter : QUOTE : Find the smallest power of 2 testure that still contains the non-power-of-two (NPOT) texture. Then adjust texture

[android-developers] Re: terminate the incoming call?

2008-12-05 Thread Luke w
I am trying to find this answer too .. I have some more questions: If we have method to terminate it, how long we may use to terminate ? I want avoid the ringtone too. what if the incoming call had been terminated, is there a notification apear in the top screen or not?

[android-developers] Re: PackageManager.installPackage().

2008-12-05 Thread teo2706
I realised, that the official release of Android SDK for Windows 1.0_r1 lacks the Settings application and that's why the Package Installer application cannot succussfully install packages. I've checked out the sources from the Android repo and rebuilt the image files from them. Now, on attempt

[android-developers] Re: Change Tab Widget icon for currently active tab

2008-12-05 Thread mscwd01
Thank you Dianne, I never doubted there would be an elegant way to achieve this - I love Android ;) Again, thanks for your help. On Dec 5, 2:34 am, Dianne Hackborn [EMAIL PROTECTED] wrote: Make your tab drawable a selector drawable that picks other drawables based on its state, like the

[android-developers] LED notifications not working?

2008-12-05 Thread code_android_festival_way
Hello! I've tried to implement a LED notification in my little application for testing but I can't get them working. Here is the little snippet from my code: private void setNotificationLED(int color){ Notification notification = new Notification(); notification.ledARGB =

[android-developers] Re: LED notifications not working?

2008-12-05 Thread code_android_festival_way
Ok I got the solution on my own. You need to add: notification.flags = Notification.FLAG_SHOW_LIGHTS; to the method and it starts working. Regards! On 5 Dez., 11:37, code_android_festival_way [EMAIL PROTECTED] wrote: Hello! I've tried to implement a LED notification in my little

[android-developers] Re: OpenGL context = how to load non power of two dimension bitmap?

2008-12-05 Thread Guian
here is my solution : (very simple with the Bitmap from android SDK ;) ) its NOT possible to load non power of two size bitmap as texture but it's very easy to resize our bitmap ;) = [syntax=java] //correct the bitmap if its not a power of two width

[android-developers] Top Status Bar Webkit transparent

2008-12-05 Thread Fred Grott(shareme)
I have a question in iPhone you can make the top bar go away in the wbekit view see: http://ajaxian.com/archives/iphone-full-screen-webapps If the same feature is in Android webkit what meta tag valeus would I use to enable it? I assume that it may be android_something-something or etc.

[android-developers] Re: Bitmap.getPixels()

2008-12-05 Thread Mike Reed
The color seems fine. Can you enclose a code-snippet, for the draw and the getPixels() call? thanks On Thu, Dec 4, 2008 at 5:55 PM, jman [EMAIL PROTECTED] wrote: It's 50% transparent, i.e. alpha channel is 0x80, paint color is 0x8000ff00 On Dec 4, 8:52 am, Robert Green [EMAIL PROTECTED]

[android-developers] Re: How to launch browser activity?

2008-12-05 Thread junker37
Thanks a lot, that worked. I had tried that before, but without the protocol on the front, just www. That makes sense now. On Dec 4, 6:19 pm, Mark Murphy [EMAIL PROTECTED] wrote: junker37 wrote: I have been unable to find out how to launch the browser activity in 1.0_r1.

[android-developers] Is it possible for C to talk to Java if necessary.

2008-12-05 Thread Rudi
Hi Does Google/Android prevent C applications from beginning execution on the phone, e.g. a simple web server. Are there any API's for C programmers to access phone functions etc. Is it possible for C to talk to Java if necessary. Regards Rudi

[android-developers] Re: Is it possible for C to talk to Java if necessary.

2008-12-05 Thread Mark Murphy
Rudi wrote: Does Google/Android prevent C applications from beginning execution on the phone, e.g. a simple web server. As an application (say, downloaded from Android Market), yes. As an extension to the firmware, no, but questions on that are better suited for one of the platform mailing

[android-developers] Re: invoking com.android.internal.*

2008-12-05 Thread Jean-Baptiste Queru
I can't recommend doing any of the things you're trying to do, for the simple reason that you're putting yourself at the mercy of implementation changes with no notice, and you shouldn't expect to receive any support if anything goes wrong. I write code that's part of the Android platform, which

[android-developers] Re: Top Status Bar Webkit transparent

2008-12-05 Thread Mike Reed
We do no t have that feature yet. On Dec 5, 2008, at 6:35 AM, Fred Grott(shareme) wrote: I have a question in iPhone you can make the top bar go away in the wbekit view see: http://ajaxian.com/archives/iphone-full-screen-webapps If the same feature is in Android webkit what meta tag valeus

[android-developers] Re: Newbe question - Application folders, how to?

2008-12-05 Thread Anders Rundgren
I had hoped that you could do all this with application XML declarations rather than by code. Thanx anyway for prompt answer! On Dec 5, 3:38 am, Dianne Hackborn [EMAIL PROTECTED] wrote: If you mean you want to put such a thing in the sliding drawer that you pull up from the bottom, that is a

[android-developers] Kogan Agora Pro skin now available for Android Emulator!

2008-12-05 Thread Tea Vui Huang
Kogan Agora Pro skin now available for Android Emulator! http://teavuihuang.com/android To install, download and unzip QVGA-L-KoganAgora.zip to the Android skin directory, e.g. C:\android-sdk-windows-1.0_r1\tools\lib\images \skins. To run the Android emulator with this Kogan Agora Pro skin,

[android-developers] Re: Epilog: Largish HTTP Post vs. ANR

2008-12-05 Thread enervatron
On Thu, Dec 4, 2008 at 6:26 PM, Dianne Hackborn [EMAIL PROTECTED] wrote: You can look in I believe /data/anr/traces.txt to find a dump of the stacks of all processes and threads when the ANR happened, which should tell you what your thread was stuck doing at the time. Ah, nice. You should put

[android-developers] SQLite database Content provider problem

2008-12-05 Thread andrider
Hi ... Iam new to Android. Iam using sqlite database , Iam getting problem with content provider.. I can able to display the list in the listactivity.. but when I click on the list item it has to display the sublist under the selected item. please tel me hw i can do that. Iam

[android-developers] how to update apk's Jad file in run time

2008-12-05 Thread Sudha Gupta
Hello, I have a application in J2me, its a client server application. In this application user registers the handset(with the phone number) on the web site , In return server sends a message to the handset with the link to download the client application on the handset. before download of the

[android-developers] Where to get widget code

2008-12-05 Thread Keith Wiley
I realize this topic has come up, but I would like a ScrollView that scrolls like a MapView to wrap a large TableLayout, so I can simply drag the table around like a map and scroll it on both axes. To my knowledge there is really no way to implement this behavior in Android out of the box. Am I

[android-developers] The G1 (RC30) eMail Client

2008-12-05 Thread SLSq
The G1 (RC30) eMail Client does not work with certain eMail systems through IMAP. A common aspect of the problems found is that when a message is sent, multiple copies of the message will appear in the Sent IMAP folder of the email system while only one may appear on the G1. This problem has not

[android-developers] Problems with GPS location service on r30

2008-12-05 Thread bensch
Hi here, First of all, I'd like to say how amazed I am with the android API. It's been awesome to work with for my first project. I'm planning on doing lots more with it in the future. I made my own jogging tracker and it was easy and fast. However, Once I got the data over to my computer and

[android-developers] Re: Largish HTTP Post vs. ANR

2008-12-05 Thread Alan
Mike, I've used the android.net.http.RequestQueue class for large, high latency calls. This class takes care of running the request in a seperate thread and allowing you to create a callback to handle the result. You can find an example of using the RequestQueue at

[android-developers] How to establish HttpConnection

2008-12-05 Thread koushik
Hi All, I am new in Android development world. I want to establish a HttpConnection from my android phone. I have used this following code in a separate class but experiencing a null exception. import java.io.*; import java.net.*; try { URL url

[android-developers] Virtual Machinery announces Android BTree implementation - demo available

2008-12-05 Thread VirtualMachinery
Virtual Machinery is delighted to announce that Version 6 of its Java BTree implementation supports the Android(TM) platform. Of particular interest to developers in the Android community will be that our implementation of the BTree uses the standard file system access in Android to support the

[android-developers] Horizontal ScrollView

2008-12-05 Thread Keith Wiley
Not sure where my last post disappeared to. Sorry if two appear as a result of my reposting this. I would like a 2D scrolling table, much like a browser or map. ScrollView only scrolls vertically. What is the best way to achieve this goal? I'm not sure how to implement scrolling from scratch.

[android-developers] Re: OpenGL context = how to load non power of two dimension bitmap?

2008-12-05 Thread Robert Green
I was not talking about scaling but instead talking about texture mapping which is known as UV or UVW mapping by some and ST mapping by openGL guys. In the past I've been able to use 3dsmax to do my UVW map and then export it along with my mesh but I haven't gotten into all of that with Android

[android-developers] Re: The G1 (RC30) eMail Client

2008-12-05 Thread Michael
Yeah, it's known to have quite a lot of issues. Try this for now: http://code.google.com/p/k9mail --~--~-~--~~~---~--~~ 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: Epilog: Largish HTTP Post vs. ANR

2008-12-05 Thread Michael
You will not be able to access /data on the G1 with the shell. It's a security feature. --~--~-~--~~~---~--~~ 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] The G1 (RC30) K-9 eMail client

2008-12-05 Thread SLSq
... has the same kinds of problems as the builtin eMail client. This finding indicates problems with the underlying Android system. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: The G1 (RC30) K-9 eMail client

2008-12-05 Thread Romain Guy
Not necessarily since K-9 is a fork of Android's Email client. On Fri, Dec 5, 2008 at 10:11 AM, SLSq [EMAIL PROTECTED] wrote: ... has the same kinds of problems as the builtin eMail client. This finding indicates problems with the underlying Android system. -- Romain Guy

[android-developers] Re: The G1 (RC30) K-9 eMail client

2008-12-05 Thread Jean-Baptiste Queru
No, it just means that the issue that K9 didn't resolve the original issue in the Email client. JBQ On Fri, Dec 5, 2008 at 10:11 AM, SLSq [EMAIL PROTECTED] wrote: ... has the same kinds of problems as the builtin eMail client. This finding indicates problems with the underlying Android

[android-developers] The G1 (RC30) eMail client

2008-12-05 Thread SLSq
... does not work properly. K-9 is just another fork to no where. It is time to fix the builtin eMail client! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Where to get widget code

2008-12-05 Thread Romain Guy
http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=core/java/android/widget/ScrollView.java;h=23a27acb367ecedab78da4a4e604c6c085e180cb;hb=HEAD On Thu, Dec 4, 2008 at 4:02 PM, Keith Wiley [EMAIL PROTECTED] wrote: I realize this topic has come up, but I would like a

[android-developers] Re: The G1 (RC30) K-9 eMail client

2008-12-05 Thread Xavier Mathews
The problem was stated. On 12/05/2008, Michael [EMAIL PROTECTED] wrote: Which problems exactly? -- 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,

[android-developers] Re: The G1 (RC30) K-9 eMail client

2008-12-05 Thread Michael
On Dec 5, 1:35 pm, Xavier Mathews [EMAIL PROTECTED] wrote: The problem was stated. No, the original poster said that it has problems, but didn't state what problems he thinks it has. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] java.lang.VerifyError in Android again

2008-12-05 Thread Claudio Veas
I was wondering if anybody knows which are the classes/interfaces/ fields/methods not supported by Android because Im getting a Verify error and I cannot identify which is the part of the class that is causing it. thanks in advance Claudio Veas

[android-developers] getSharedPreferences

2008-12-05 Thread Brad Gies
Can someone clarify how to use getSharedPreferences(String http://code.google.com/android/reference/java/lang/String.html name, int mode) ? I have created a preferences.xlm file, added some Boolean preferences, can edit them from an activity, but I can't seem to figure out how to get the

[android-developers] Re: getSharedPreferences

2008-12-05 Thread Mark Murphy
Brad Gies wrote: Can someone clarify how to use getSharedPreferences*(String http://code.google.com/android/reference/java/lang/String.html name, int mode) * ? I have created a preferences.xlm file, added some Boolean preferences, can edit them from an activity, but I can’t seem to

[android-developers] How to create grey menu icons?

2008-12-05 Thread Noonien Soong
Hi, does anyone know what's the easiest way to create new menu icons for the gray menu that pops up when you press the menu button ? I want to create custom icons with the same consistent look. I mean the icons that can be found in the SDK and are all named ic_menu_*.png. Is there some sort

[android-developers] Is there a way to listen for the completion of AnimationDrawable animation?

2008-12-05 Thread Satya Komatineni
For tweening animation there is a callback that can be registered on the Animation object. I dont see anything similar on AnimationDrawable. Any thoughts? Thanks for your help Satya --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Re: Is there a way to listen for the completion of AnimationDrawable animation?

2008-12-05 Thread Romain Guy
Hi, There is no such feature on AnimationDrawable. It keeps repeating the animation. On Fri, Dec 5, 2008 at 12:19 PM, Satya Komatineni [EMAIL PROTECTED] wrote: For tweening animation there is a callback that can be registered on the Animation object. I dont see anything similar on

[android-developers] Re: Is there a way to listen for the completion of AnimationDrawable animation?

2008-12-05 Thread Satya Komatineni
Romain, Thanks again. I suppose I can copy the source code of AnimationDrawable as a class in my package and provide the call backs. The class seem to be pretty standalone. Satya On Fri, Dec 5, 2008 at 4:59 PM, Romain Guy [EMAIL PROTECTED] wrote: Hi, There is no such feature on

[android-developers] Re: Eclipse Error while adding ddms

2008-12-05 Thread Ralf
FYI I fixed the create_ddms_plugin script in the git repo, so the steps 1..3 below should work now. R/ On Fri, Dec 5, 2008 at 12:47 AM, Anonymous Anonymous [EMAIL PROTECTED] wrote: Hi Ralf, Thanks again.. 1. Ran create_ddms_symlink.sh 2.In eclipse File - import-plugins and fragments

[android-developers] Re: The G1 (RC30) eMail client

2008-12-05 Thread Andrew Stadler
Actually, there is a lot of development happening on the client. Please feel free to file bugs on the public tracker, or ask questions here about specific issues. I can't guarantee which release any given fix will appear in, but we are definitely tracking and fixing issues on it. On Fri, Dec 5,

[android-developers] Re: how to update apk's Jad file in run time

2008-12-05 Thread Dianne Hackborn
An .apk is read-only, you can't modify it. On Thu, Dec 4, 2008 at 11:19 PM, Sudha Gupta [EMAIL PROTECTED]wrote: Hello, I have a application in J2me, its a client server application. In this application user registers the handset(with the phone number) on the web site , In return server

[android-developers] Re: Streaming RTSP directly by suing MediaPlayer

2008-12-05 Thread Jona
I'm not sure were or who to ask... I've been trying to create a server to communicate with MediaPlayer via RTSP. Now I've got this response from the MediaPlayer to my server: // [OPTIONS rtsp://localhost:8554/triStateBuffer1 RTSP/1.0 CSeq: 0

[android-developers] Re: Strange behavior with AlarmManager.RTC_WAKEUP and PowerManager.WakeLock

2008-12-05 Thread Noam Wolf
I was setting my AlarmManager in the wrong place, namely an onXxx event. What i did was set the AlarmManager on a user action (like save or whatever) and that solved my problem. Check it out Applications Tools ClockApps On Dec 5, 2:56 am, Jon Colverson [EMAIL PROTECTED] wrote: On Dec 5,

[android-developers] Re: Epilog: Largish HTTP Post vs. ANR

2008-12-05 Thread Andrew Stadler
On Fri, Dec 5, 2008 at 8:40 AM, [EMAIL PROTECTED] wrote: So I finally figured out what was going on. It had nothing to do with HTTP posts, thankfully. What it did have to do with was Formatter (or String.format). An innocuous foreground loop using Formatter was taking 10 seconds for about

[android-developers] Re: Testing application

2008-12-05 Thread Andrew Stadler
This is probably a question more suited for android-beginners. That and other lists are described in more detail at http://code.google.com/android/groups.html Welcome to Android app development! On Tue, Dec 2, 2008 at 8:09 PM, indiabolbol.com [EMAIL PROTECTED] wrote: I am interested in how

[android-developers] Re: wpa_supplicant not compiled?

2008-12-05 Thread Andrew Stadler
This list is for developers using the Android SDK to develop applications. For questions regarding accessing, building and using the open source release, please refer to one of the groups listed at http://code.google.com/android/groups.html. Thanks, Andy On Tue, Dec 2, 2008 at 11:45 PM,

[android-developers] Re: java.lang.VerifyError in Android again

2008-12-05 Thread jacek
You need to give us more details on the exact verify error On Dec 5, 1:56 pm, Claudio Veas [EMAIL PROTECTED] wrote: I was wondering if anybody knows which are the classes/interfaces/ fields/methods not supported by Android because Im getting a Verify error and I cannot identify which is the

[android-developers] Re: Possibility to access the Own Content Provider

2008-12-05 Thread Andrew Stadler
Yasmin, if you're not sure where the sample apps are, you may want to jump over to the android-beginners list, described in more detail at http://code.google.com/android/groups.html. You'll probably find more useful responses there. Welcome to Android development! On Tue, Dec 2, 2008 at

[android-developers] Re: OpenGL Troubles on the G1

2008-12-05 Thread CaseyB
I've gone through my code and the Kube code and they look the same! The only thing that I can see that's different is that I use GL_FLOAT when I define my verts and normals and the Kube program used GL_FIXED. Could it be that the G1 doesn't support floating point coordinates? On Dec 3, 10:57 

[android-developers] Re: Eclipse Error while adding ddms

2008-12-05 Thread Anonymous Anonymous
Hi guys, Now no erros :) btw now ddms fails to load... :( i have created com.android.ide. eclipse.ddms/libs/ folder and copied the required *.jar files from /out/host/linux-x86/framework/ .. 2. now goto /out/host/linux-x86/bin and ran ./ddms gettign the below exception ! am i missing

[android-developers] Re: Eclipse Error while adding ddms

2008-12-05 Thread Xavier Ducrohet
I'm a bit confused here. After making the ddms _plugin_ compile in Eclipse, you are launching the standalone version from the sdk... On Fri, Dec 5, 2008 at 7:10 PM, Anonymous Anonymous [EMAIL PROTECTED] wrote: Hi guys, Now no erros :) btw now ddms fails to load... :( i have created

[android-developers] Re: getSharedPreferences

2008-12-05 Thread Brad Gies
Thank Mark... as always your advice is exactly what I needed. :) By the way, I just downloaded the 1.9 version of your book (wondered what happened to 1.5... 1.8 but that's another question), and it is even better than it was... except for one thing That's a god awful color of green

[android-developers] Re: java.lang.VerifyError in Android again

2008-12-05 Thread Claudio Veas
Yeah the problem is that the file that has this issue is internal of the company that I work for and I cannot show it in a public space so that was why I was so not specific about the bug. Any way if you know which classes/methods/etc cause these kinds of problems Ill apreciate it. Thanks again

[android-developers] images sent via text

2008-12-05 Thread rangouno
Hi, I would like to know why I can't save any images sent via text. There should be an option to save an image on the phone. The majority of phones have this option and the G1 does not have it. Otherwise, the phone is awsome, keep up the good work.

[android-developers] Re: unable to see # in webview

2008-12-05 Thread Jon
I was trying to debug this for hours until I stumbled across this post. Thanks, loadDataWithBaseURL works. Is that intended functionality in loadData? It should definitely be documented if so, very annoying. On Nov 18, 9:27 am, joshv [EMAIL PROTECTED] wrote: UseWebView.loadDataWithBaseURL, use

[android-developers] Re: G1 linux

2008-12-05 Thread [EMAIL PROTECTED]
I might go moko or blackberry... waiting for BT in droid is a pain.. see my code and wiki on this here: http://code.google.com/p/zephyropen/ On Nov 22, 8:54 am, Aurelio Lopez [EMAIL PROTECTED] wrote: Hi Jim: Is it possible to run Openmoko SO on other hardware than Freerunner? (thinking on

[android-developers] Re: Manipulate Drawable Resource

2008-12-05 Thread pjv
Just making sure we are talking about notifications (and icons therein) at the top of the screen? From what I recall, the way notifications work is that you can refresh them in place by sending out a new notification with the same id. Ofcourse this would give you a chance to update the icon too.

[android-developers] Re: Custom Style

2008-12-05 Thread Jason Parekh
You can just use the default style of the horizontal progress bar and in addition set the progressDrawable to the resource for your XML file. jason On Wed, Dec 3, 2008 at 6:06 PM, Protocol-X [EMAIL PROTECTED] wrote: Hello, I am trying to implement a custom style to a progress bar. I have

[android-developers] Re: OpenGL Troubles on the G1

2008-12-05 Thread CaseyB
It was the ColorArrays!! When I take out gl.glEnableClientState (GL10.GL_COLOR_ARRAY); it works, add it back in and it doesn't! On Dec 5, 9:34 pm, CaseyB [EMAIL PROTECTED] wrote: I've gone through my code and the Kube code and they look the same! The only thing that I can see that's different

[android-developers] Re: Eclipse Error while adding ddms

2008-12-05 Thread Xavier Ducrohet
What are you trying to debug? an android application built with the SDK or the ddms plugin? Xav On Fri, Dec 5, 2008 at 7:31 PM, Anonymous Anonymous [EMAIL PROTECTED] wrote: Hi Xav, Sorry for the confusion let me explain once again. 1.using repo get full source 2.Add project in Eclipse

[android-developers] ::CPU usage

2008-12-05 Thread Imran
Hi All...!!! i have developed a small game application... i have a problem... when i run the application it is using 50% of CPU (mine is 2Ghz processor )... will this create a problem in actual device.. if soo how can i over come it... Thanks in advance for any Replays...!!! Cheers

[android-developers] Re: Eclipse Error while adding ddms

2008-12-05 Thread Anonymous Anonymous
I am trying to debug IM application.Just to understand the current code flow.. Thanks Steve On Sat, Dec 6, 2008 at 11:28 AM, Xavier Ducrohet [EMAIL PROTECTED] wrote: What are you trying to debug? an android application built with the SDK or the ddms plugin? Xav On Fri, Dec 5, 2008 at

[android-developers] Re: INSTALL_FAILED_UPDATE_INCOMPATIBLE

2008-12-05 Thread Urakagi
I'm also stuck at here, this is really terrible... The final way is factory reset, buy I honestly don't want to do it... On 11月4日, 午前12:57, Cheryl Sedota [EMAIL PROTECTED] wrote: What do you mean by uninstall it fully? I did an adb uninstall package name but that does not appear to fully

[android-developers] Re: Manipulate Drawable Resource

2008-12-05 Thread mathiastck
Also not sure what you are talking about, but generically, from code, if you want a Drawable object that can be modified, I had that problem. I used a StateListDrawable. http://code.google.com/android/reference/android/graphics/drawable/StateListDrawable.html It was for Drawables in an