[android-developers] Robin Talwar wants to chat

2010-12-31 Thread Robin Talwar
--- Robin Talwar wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-8acf027b4a-81b1fe32d6-8CfQJ4At8B7LEL9OIkwscAfP2Yc You'll

Re: [android-developers] making Toast like notification?

2010-12-31 Thread Karim B
I don't I wise very clear... I'm trying to create something completely customizable interms of animation, duration...etc where in the Toast widget duration can only be set to 2 constant and therefor its not changeable and the animation part is also not changeable since the animation is set via

[android-developers] Re: GPS MapView: animate to current position

2010-12-31 Thread Stephan Wiesner
Solved it: I have set different criteria: Criteria criteria = new Criteria(); //criteria.setAccuracy(Criteria.ACCURACY_FINE); // more criteria If I remove those, the code works fine. . . Stephan 2010/12/31 Stephan Wiesner testexpe...@googlemail.com Hi, I have a MapActivity, using Google

[android-developers] How to do this kind of screen alignment?

2010-12-31 Thread Mystique
Hi, I know fixing the point in the app to draw image/text are bad practices and I'm trying to do this correctly but been far from successful. Any code example to do this layout for both portrait and landscape orientation? |

[android-developers] Protecting Android apk to prevent decompilation, network sniffing etc.

2010-12-31 Thread Samuh
Is there a way to protect Android apk file so that the source code cannot be regenerated? Also, there are a number of network sniffers that allow HTTP monitoring, is there a way to bypass these such that the incoming/outgoing network traffic could not be monitored? I have read that code

[android-developers] Re: app security

2010-12-31 Thread MarcoAndroid
Yes Houston we have got a problem :) Strings are in general very easy to extract from binaries, even from C/ C++ programs via the strings *nix command for example. You don't need to decompile anything! What you could do is manually obfuscate your strings some more: - split the key-string in

[android-developers] How to increase...?

2010-12-31 Thread Abhilash baddam
Hi, How can we increase the height of title bar. Regards, abhilash.b -- 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 group, send

[android-developers] Re: Detect Codec of local media File

2010-12-31 Thread Alok Kulkarni
Seems everyone is busy with new year party :P:P Anyways Happy New Year to all Android developers.. Have a rocking year ahead !!! Thanks , Alok. On Fri, Dec 31, 2010 at 12:50 PM, Alok Kulkarni kulsu...@gmail.com wrote: Hi, I am streaming local audio and video files of a mobile device to another

Re: [android-developers] How to increase...?

2010-12-31 Thread Dianne Hackborn
Hide it and put your own layout for title bar you want at the top of your content view. On Fri, Dec 31, 2010 at 1:28 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, How can we increase the height of title bar. Regards, abhilash.b -- You received this message

Re: [android-developers] making Toast like notification?

2010-12-31 Thread Dianne Hackborn
A Dialog is not in any way shape or form a new activity. If you are saying that you want to display this toast-like thing when the user isn't actually in your app... well, that is what a toast is for, and you will need to live with its restrictions (which are kind-of intentional because doing

[android-developers] How to differentiate when screen is rotated and when is activity is sent back ( pressing back key)

2010-12-31 Thread mani
I am confused between screen rotation and activity sent back. My requirement i am trying out in my application is - when activity goes to idle( meant pressing back ) , i need to stop a timer. - When screen rotation happens i shouldnt stop a timer. I also registered for

[android-developers] Re: the new eclipse UI design - absolute frustration and waste of time

2010-12-31 Thread hiwa
On Dec 31, 6:08 am, Bob Kerns r...@acm.org wrote: I don't really agree with this. You know what, just have a go at anything else in a 2011 worthy of developer suitable IDE out there, I have been using eclipse for 5 years now. I have used it for more than just Java, and I am a huge fan of

Re: [android-developers] How to differentiate when screen is rotated and when is activity is sent back ( pressing back key)

2010-12-31 Thread Dianne Hackborn
You can use this to transfer active objects across activity instances when a configuration change is happening: http://developer.android.com/reference/android/app/Activity.html#onRetainNonConfigurationInstance() On Fri, Dec 31, 2010 at 2:24 AM, mani smanikanda...@gmail.com wrote: I am confused

[android-developers] Re: app security

2010-12-31 Thread Samuh
This post [http://digital-identity.dk/2010/12/protecting-ip-in-android- applications/] suggests that apart from obfuscation, we can try implementing a portion of (sensitive) code natively. And then to ensure that the native code is used/called by our application only, we can match the digital keys

Re: [android-developers] Re: app security

2010-12-31 Thread Dianne Hackborn
Ultimately there is no good answer here. No matter what you do, you can't totally protect anything in your application. Your entire application is out in the world, where anyone can get at its contents, and with sufficient effort learn every deepest darkest secret it contains. The question you

[android-developers] Get MediaScanner current status

2010-12-31 Thread mrAlmond
Dear all, My Android application has a broadcast receiver that receives mediascanner start and finished intents. Now I'd like to know if it's also possible to do a syncronous request to the mediascanner to know its current status (if it's still scanning or not). I need this because if my

[android-developers] Re: How to differentiate when screen is rotated and when is activity is sent back ( pressing back key)

2010-12-31 Thread mani
Thanks Dianne...!! I will try this solution..!! - mani On Dec 31, 3:32 pm, Dianne Hackborn hack...@android.com wrote: You can use this to transfer active objects across activity instances when a configuration change is happening:

[android-developers] Recommended way to update map overlay in background

2010-12-31 Thread AC
I'm working on an application with a number of activities, including a MapViewActivity. The map has markers drawn on it as overlays. The marker data is retrieved by regularly polling a web server, which returns a JSON document. The data can change from time to time, and when it does the map must

Re: [android-developers] Re: app security

2010-12-31 Thread Mark Murphy
Moreover, you also have to ask yourself how much effort is needed for a given item. For example, the OP was concerned about a Twitter API key. Personally, I wouldn't worry about that, since there are no real barriers for anyone else to get their own Twitter API key. On Fri, Dec 31, 2010 at 5:47

Re: [android-developers] ADB server didn't ACK, cannot bind tcp...

2010-12-31 Thread David Turner
Do you have a service bound to localhost:5037 ? If so, it will prevent the ADB server from running properly, and might explain the cannot bind error message. On Fri, Dec 3, 2010 at 5:08 PM, Zbahoui zbah...@gmail.com wrote: Hi, I'm trying to install the android sdk on my Debian SID but when I

Re: [android-developers] Augmented Reality - AR

2010-12-31 Thread bgkarthikeyan
Hello Danilo, Thanks for Introducing Qualcomm's SDK I was not aware of this one. Interested in checking out this SDK. Karthik 2010/12/28 Danilo Veras danilosve...@hotmail.com sorry, I did not learn to write English. I wonder if someone is developing or studying about augmented reality.

[android-developers] Re: Google analytics crash

2010-12-31 Thread H
A question - what version of the analytics sdk are you using..? There was a new flavour released recently which said it fixed many of the bugs... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Recommended way to update map overlay in background

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 5:17 AM, AC alistair.cunning...@gmail.com wrote: The other approach which springs to mind is to user a TimerTask (maybe calling an AsyncTask if necessary to avoid blocking the UI thread) from the MapViewActivity. That sounds like a plan. Another consideration is

Re: [android-developers] yahoo local search xml reply in android

2010-12-31 Thread TreKing
On Tue, Dec 28, 2010 at 11:53 PM, zeeshan mirza zeeshan.nabeel.mi...@gmail.com wrote: I know about parsing and I am using SAX parser. How can i read specific elements of each tag from xml. Your question has already been answered: On Tue, Dec 28, 2010 at 11:43 PM, Frank Weiss

Re: [android-developers] yahoo local search xml reply in android

2010-12-31 Thread Nandlal Viranni
Hello , How have you done this local search to find nearest coffee shop or resturant in android ? I want also to do same thing.but i am not able to do this .. I knows how to parse any xml file. can U help me. Thanks in advance . Regards , Nandlal Virani On Wed, Dec 29, 2010 at 10:37 AM,

Re: [android-developers] populate ItemizedOverlay when AlertDialog is showing

2010-12-31 Thread TreKing
On Wed, Dec 29, 2010 at 4:20 AM, viktor victor.scherb...@gmail.com wrote: Is it any other way to refresh overlays? Invalidate your MapView? - TreKing

[android-developers] Re: Recommended way to update map overlay in background

2010-12-31 Thread AC
On Dec 31, 12:06 pm, TreKing treking...@gmail.com wrote: In this case you'd probably need that Service, binding to it as necessary when switching to the map. That's a good idea! I could download and store the marker data in the service, then have the MapViewActivity bind to it when the user

Re: [android-developers] MultiTouch Support

2010-12-31 Thread TreKing
On Wed, Dec 29, 2010 at 5:57 AM, pedr0 pulsarpie...@gmail.com wrote: Any suggestion will be appreciated. Try updating finger_one_X and finger_one_Y. AFAICT, you're only updating #2 in your multi-touch branch.

[android-developers] Re: Google analytics crash

2010-12-31 Thread blindfold
anyone else getting this? I have recently received several crash reports caused by Google Analytics (version 1.1), such as java.lang.IllegalStateException: no transaction pending at android.database.sqlite.SQLiteDatabase.endTransaction(SQLiteDatabase.java: 480) at

Re: [android-developers] help with ColorStateList

2010-12-31 Thread TreKing
On Wed, Dec 29, 2010 at 7:06 AM, dashman erjdri...@gmail.com wrote: every time, i try to display the List child row - it craps out in a android inflator code. As informative as it craps out is, you might want to provide a little more information - like a stack trace and relevant code for

Re: [android-developers] Issue with messages in this group?

2010-12-31 Thread TreKing
On Wed, Dec 29, 2010 at 7:13 AM, Gus gussab...@yahoo.com wrote: Are some messages deleted or they just dissapear? Are you using the web interface? Because it sucks and randomly eats posts.I've not been able to find some posts even when searching by exact title. Use Gmail.

[android-developers] How to get screen density in pixels-per-inch or equivalent

2010-12-31 Thread Phil Endecott
Hi All, Imagine trying to display an accurate ruler on the screen, or something like that. I'd like to know the screen's pixel density in pixels-per-inch, or equivalently its dimensions in mm and resolution in pixels, so that I know the accurate physical size of the thing that I'm drawing. Is

Re: [android-developers] moving InputMethod to the top

2010-12-31 Thread TreKing
On Wed, Dec 29, 2010 at 7:20 AM, guich guiha...@gmail.com wrote: How can i do the same? Open the input method at the top? Not sure, but this should make for good reading: http://developer.android.com/resources/articles/on-screen-inputs.html

Re: [android-developers] How to get screen density in pixels-per-inch or equivalent

2010-12-31 Thread Kostya Vasilyev
Phil, This has both rounded (mdpi, ldpi, etc.) values and actual resolution, that you'd want to use for a ruler: http://developer.android.com/reference/android/util/DisplayMetrics.html Note that some devices don't correctly report actual resolution (xdpi / ydpi). Canvas also has density

Re: [android-developers] fromHtml doesn't work for textview font size, any help?

2010-12-31 Thread TreKing
On Wed, Dec 29, 2010 at 7:41 AM, genxsol genx...@gmail.com wrote: color does work but no font size, any help plz http://commonsware.com/blog/Android/2010/05/26/html-tags-supported-by-textview.html

Re: [android-developers] How to read file from assets dir?

2010-12-31 Thread Ramesh Solanki
InputStream myInput =contextname.getAssets().open(filename); -- Thanks regards Ramesh Solanki Dignizant technology Surat India Email: rkindia1...@gmail.com rkindia1...@yahoo.co.in -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Taking pictures

2010-12-31 Thread Nikola
Hi, could anyone propose good approach for following: I would need to have feature in my (simple) app of taking pictures and tagging them with some values. Do I need to implement all of the camera code in my app, or can I call some default camera app and have data from it? What would be best

[android-developers] Yahoo API in android

2010-12-31 Thread Ramesh Solanki
Hi , I need some help regarding Use Of Yahoo API in android can any body help me how i can fetch all the contacts from yahoo contact list from android thanks in advance -- Thanks regards Ramesh Solanki Dignizant technology Surat India Email: rkindia1...@gmail.com rkindia1...@yahoo.co.in --

Re: [android-developers] Taking pictures

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 6:54 AM, Nikola nikola1...@gmail.com wrote: Do I need to implement all of the camera code in my app, or can I call some default camera app and have data from it? http://developer.android.com/reference/android/provider/MediaStore.html#ACTION_IMAGE_CAPTURE

[android-developers] Re: Yahoo API in android

2010-12-31 Thread Sarwar Erfan
Its a webservcie which uses OAuth. For OAuth in Anroid, use this: http://code.google.com/p/oauth-signpost/ Here is an article on using OAuth in Android. http://donpark.org/blog/2009/01/24/android-client-side-oauth Read Yahoo contacts API documentation:

Re: [android-developers] Yahoo API in android

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 7:11 AM, Ramesh Solanki rkindia1...@gmail.comwrote: I need some help regarding Use Of Yahoo API in android If the crux of your problem is using the Yahoo API, you should ask your question on a forum dedicated to the Yahoo API. If the crux of your problem is

Re: [android-developers] Taking pictures

2010-12-31 Thread Nikola
On Fri, Dec 31, 2010 at 2:17 PM, TreKing treking...@gmail.com wrote: On Fri, Dec 31, 2010 at 6:54 AM, Nikola nikola1...@gmail.com wrote: Do I need to implement all of the camera code in my app, or can I call some default camera app and have data from it?

[android-developers] Re: Google analytics crash

2010-12-31 Thread H
You could stick a try/catch block in, but I doubt it would catch *most* of the bugs. Remember that your request for a track simply gets added to the database at that point and then some time later the dispatcher picks requests up from the database and sends them (although if you ask it to

[android-developers] Re: moving InputMethod to the top

2010-12-31 Thread Sarwar Erfan
On Wednesday, December 29, 2010 7:20:42 PM UTC+6, guich wrote: I saw some applications that moves the InputMethod to the top. I will appreciate very much if you can give me link/name of *at least one*Android application that makes Soft Input Panel to appear from top. Thanks in advance.

Re: [android-developers] invoke my application at given Date/Time

2010-12-31 Thread TreKing
On Mon, Dec 27, 2010 at 7:38 AM, asinha asinha.vocoll...@gmail.com wrote: How can I invoke my android application at given Date/Time, say daily at 9am? http://developer.android.com/reference/android/app/AlarmManager.html

[android-developers] Writing a Date/Time Service

2010-12-31 Thread asinha
I am trying to write a service which runs as background process and invoke my task (in application) at 9am everyday. My service is: public class DateService extends Service { //expressed in milliseconds private final long ONCE_PER_DAY = 1000 * 60 * 60 * 24; private final

[android-developers] Re: disappearing USB functionality with Nexus S and Vista

2010-12-31 Thread greg
I submitted this as an issue at http://code.google.com/p/android/issues/detail?id=13553 On Dec 30, 11:51 pm, greg sep...@eduneer.com wrote: After a couple days of Nexus S USB functionality with USB debugging and USB drive mode, the functionality seemingly disappeared: when I connect the Nexus

Re: [android-developers] Writing a Date/Time Service

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 7:35 AM, asinha asinha.vocoll...@gmail.com wrote: Is this the right way to write my service? No. Use AlarmManager. How would I verify my service? Test it? - TreKing

[android-developers] Best way to resize photo

2010-12-31 Thread Doug Gordon
Among other things, my app displays photos in an ImageView in a popup Dialog. These images come out of a database that is created on the user's PC. Before storing them in the database, I resize them for max dimensions of 320x320 pixels. So, in almost all cases, on the Android device I simply

[android-developers] JNI to access GPS HAL layer function.

2010-12-31 Thread bharath
Hi All, Is it possible to write a JNI to access GPS / Wifi / USB HAL layer function? If possible, please post the sample code. Thanks Bharath -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Writing a Date/Time Service

2010-12-31 Thread Kostya Vasilyev
31.12.2010 16:35, asinha пишет: I am trying to write a service which runs as background process and invoke my task (in application) at 9am everyday. My service is: [snip] Is this the right way to write my service? How would I verify my service? This is error-prone, since a service can get

[android-developers] Virtual Keyboard covers EditText

2010-12-31 Thread Nasir
Hey guys, I've stuck in a BIG problem in my Android application. I've an ListActivity and at bottom of ListView I've and EditBox. Whenever user clicks on EditBox, Virtual keyboard appears covering EditBox and user is not able to view what he is typing. I've read lots of posts to resolve this

[android-developers] Re: Google analytics crash

2010-12-31 Thread blindfold
You may be right, although the crash reports that I have all suggest that they were triggered from direct calls to GoogleAnalyticsTracker.trackEvent() in my code leading to java.lang.IllegalStateException: no transaction pending. Judiciously sprinkling try-catch blocks is a great way to further

[android-developers] Re: app security

2010-12-31 Thread jacek
I know that everybody can get their Twitter etc. api_key (+ secret). The same goes for Google Storage, Amazon S3 credentials, etc. My issue is that I do not want *my* credentials stolen and the bad guy pretending to be me with all the dire consequences. So -- how about getting credentials from

[android-developers] Re: Google analytics crash

2010-12-31 Thread H
Looking in the analytics source after you've called trackEvent(), I suspect that error is coming out when it is using a database transaction to insert the event into the database. Once inserted, it calls endTransaction as well as setTransactionSuccessful. Both of these do this check: if

Re: [android-developers] Android SDK and AVD Manager - permission denied: connect

2010-12-31 Thread TreKing
On Wed, Dec 29, 2010 at 12:18 PM, Bret Foreman bret.fore...@gmail.comwrote: Any ideas what might be wrong? Did you try http*s*? - TreKing http://sites.google.com/site/rezmobileapps/treking -

[android-developers] Re: Virtual Keyboard covers EditText

2010-12-31 Thread Federico Paolinelli
Having your view wrapped into a scroll view should make the trick. ?xml version=1.0 encoding=utf-8? ScrollView xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=fill_parent android:layout_height=fill_parent android:fillViewport=true /ScrollView To be

[android-developers] Re: the new eclipse UI design - absolute frustration and waste of time

2010-12-31 Thread Bob Kerns
Just to clarify -- I'm NOT saying the current state doesn't have huge usability problems! (And so did the previous state). I'm only disagreeing with the sentiment that real programmers only want to use the XML, and ignore the GUI. Even now, when it works right (and I can figure out how to use

[android-developers] Re: Google analytics crash

2010-12-31 Thread blindfold
Hmm, I have only one global tracker object that I create in the onCreate() of my main activity, and with a regular dispatch interval through the format tracker.start(UA-12345-0, nseconds, this), so I'd say that it all works from one alive thread. However, in one pair of crash logs the first

[android-developers] Re: How to read file from assets dir?

2010-12-31 Thread Bob Kerns
Can I suggest adding links (perhaps not real hyperlinks, but conceptual links at least) from the API documentation to the relevant API examples? I think you'd get a lot more value from the work you put into the API demos this way. Also, I'd concur with the recent comment, but not the tone, that

[android-developers] Re: How to get screen density in pixels-per-inch or equivalent

2010-12-31 Thread Phil Endecott
Thanks Kostya, this is just what I needed. On Dec 31, 12:42 pm, Kostya Vasilyev kmans...@gmail.com wrote: Phil, This has both rounded (mdpi, ldpi, etc.) values and actual resolution, that you'd want to use for a ruler: http://developer.android.com/reference/android/util/DisplayMetrics.html

Re: [android-developers] how to avoid cut off of words in TextView

2010-12-31 Thread TreKing
On Wed, Dec 29, 2010 at 4:47 PM, gato chlr dany...@gmail.com wrote: some advice? I have many TextViews with a lot of text that causes them to wrap and they always wrap around the words (as in your second example). Is that all you're doing? Just setting text and it shows up that way? Weirdness.

[android-developers] Re: uninstall TTS data from Android = 1.6 ?

2010-12-31 Thread DulcetTone
I am not keen on testing 1.5 and such sort of tests usually are a waste of time on Android. Certainly there must be a means of finding and deleting this data? I've been told it goes onto the SD card, but I see it nowhere for manual deletion. tone On Dec 21, 2:39 pm, JP

[android-developers] Re: how to avoid cut off of words in TextView

2010-12-31 Thread Byron Penner
U sure he's not just looking for the input type of textmultiline On Dec 29, 5:47 pm, gato chlr dany...@gmail.com wrote: Hi list! for example : TextView a = new TextView(this); a.setText(I'm a set of words, some ones larger than others, no matter); it is posible to have painted the

Re: [android-developers] SMS sending through HTC Desire

2010-12-31 Thread TreKing
On Thu, Dec 30, 2010 at 2:22 AM, Jawwad Farooq jawwad.far...@gmail.comwrote: I make a call to my number and got the busy tone. Please tell me you mean you used a different phone to call your development phone ... because if you're calling your development phone with your development phone ...

[android-developers] Large Icon not showing up in Market Display

2010-12-31 Thread JRock
The recent market application changes now show a large icon for your app in the upper left hand side of the screen when viewing the app's listingfor my app, however, it is still showing the tiny icon in the middle of a huge white rectangle. From the Developer console I have uploaded the new

Re: [android-developers] How to do this kind of screen alignment?

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 2:52 AM, Mystique joven.ch...@gmail.com wrote: Any code example to do this layout for both portrait and landscape orientation? The likelihood of finding code examples that perfectly solve the particular layout problem you are having at any given time is pretty much

Re: [android-developers] Large Icon not showing up in Market Display

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 10:09 AM, JRock develo...@earthblood.com wrote: From the Developer console I have uploaded the new entry for a high resolution icon of 512 X 512 dimensions, and I assume that this is the icon that is supposed to be showing, yet, as I mentioned, it is not. I have no

[android-developers] when paid apps will be available to buy in greece ?

2010-12-31 Thread wolf
when paid apps will be available to buy in greece ? if i live in greece can i make paid apps and sell them (via android marketplace) ? -thanks!!! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: the new eclipse UI design - absolute frustration and waste of time

2010-12-31 Thread John Lussmyer
I've used the NetBeans and MyEclipse GUI editors extensively. They are very nice. The Android thing in Eclipse is pretty much a waste of time. Bizarre things happen when you try to drag controls or layouts in. Items end up in totally unexpected places, with attributes that you can't seem to

Re: [android-developers] Re: How to add labels above this table layout

2010-12-31 Thread TreKing
On Thu, Dec 30, 2010 at 4:16 AM, pramod.deore deore.pramo...@gmail.comwrote: I had still facing this problem. Can anyone please solve this one? Mark already gave you two options. If you were trying the first, you did not follow what he said.

Re: [android-developers] Augmented Reality

2010-12-31 Thread TreKing
On Thu, Dec 30, 2010 at 10:05 AM, bgkarthikeyan bgkarthike...@gmail.comwrote: Will that be possible? Nope, sorry. - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit

[android-developers] Re: disappearing USB functionality with Nexus S and Vista

2010-12-31 Thread Pent
I've had the same with N1 since 2.2.1 (hard to say if it was that update that broke it). Pent On Dec 31, 4:51 am, greg sep...@eduneer.com wrote: After a couple days of Nexus S USB functionality with USB debugging and USB drive mode, the functionality seemingly disappeared: when I connect the

[android-developers] Re: disappearing USB functionality with Nexus S and Vista

2010-12-31 Thread Pent
Does a reboot not fix it BTW ? Works every time here, real pain though. Annoyingly, as soon as I select reboot from the normal dialog, the USB notification appears. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Need Info

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 12:50 AM, yogi yogi.ru...@gmail.com wrote: Can any buddy provide me some info regarding the use of CachedNode and CacheFrame in webkit native code. http://www.catb.org/~esr/faqs/smart-questions.html

RE: [android-developers] SMS sending through HTC Desire

2010-12-31 Thread XiaoXiong Weng
Wouldn't that just goto the voicemail? Erh, when I send text to myself it works J From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of TreKing Sent: Friday, December 31, 2010 11:06 AM To: android-developers@googlegroups.com Subject: Re:

[android-developers] Re: disappearing USB functionality with Nexus S and Vista

2010-12-31 Thread greg
Thanks for the reply. Once the Nexus S USB connection stopped working, I have not been able to revive it. I have tried - rebooting my laptop (running Vista), - performing a Factory reset on the Nexus S, - uninstalling and installing the Google USB driver (version 4.0), and - fiddling with Nexus

[android-developers] Re: disappearing USB functionality with Nexus S and Vista

2010-12-31 Thread Sarwar Erfan
On Friday, December 31, 2010 11:38:57 PM UTC+6, greg wrote: My Nexus One USB connection continues to work with the same laptop. And with the same USB cable? Regards Sarwar Erfan -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Screen Rotation

2010-12-31 Thread Robert
I have an application that I am trying to stop the automatic restart when the screen is rotated. I put android:configChanges=orientation| keyboardHidden into the Manifest (copied below) but the screen still rotates and the OnCreate is called (verified by writing to the log in OnCreate). Have I

[android-developers] Re: Screen Rotation

2010-12-31 Thread Sarwar Erfan
http://stackoverflow.com/questions/2730855/prevent-screen-rotation-android -- 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 group, send email to

Re: [android-developers] Screen Rotation

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 11:48 AM, Robert rcope...@gmail.com wrote: The reason I want to do this is that the app is accessing a webserver via an AsyncTask and I'd like to stop the restart until I can figure out how to link the background task to the new pid that is created. I've read some

[android-developers] Captured image FileNotFound

2010-12-31 Thread Nikola
Hi, trying to capture image and display it but getting FileNotFound for following code. Anybody willing to take a look at it? public class HelloAndroid extends Activity { /** Called when the activity is first created. */ private static final int CAMERA_PIC_REQUEST = 1337; Button

[android-developers] Re: disappearing USB functionality with Nexus S and Vista

2010-12-31 Thread greg
Thanks for the reply. Yes, I tried the same cable. I just discovered that removing the Nexus S battery for about a minute is enough to restore the USB functionality. (Compared to swapping phones at BestBuy, removing the battery is a great convenience. :*) - Greg On Dec 31, 12:46 pm, Sarwar

Re: [android-developers] Set Android WIFI Ip address from my own application

2010-12-31 Thread Faheem Khatri
but there is no function which takes argument to set the settings, as *public static final String WIFI_STATIC_DNS1* it only return the value , not set the value, i ll get syntax error if i try to set the values from this. 2010/12/30 Kostya Vasilyev kmans...@gmail.com You can change these

Re: [android-developers] Captured image FileNotFound

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 12:05 PM, Nikola nikola1...@gmail.com wrote: Anybody willing to take a look at it? Giving your file that should hold an image a .tmp extension is questionable. Besides that, a Google Search for ACTION_IMAGE_CAPTURE shows some promise ...

Re: [android-developers] Captured image FileNotFound

2010-12-31 Thread Nikola
On Fri, Dec 31, 2010 at 7:32 PM, TreKing treking...@gmail.com wrote: On Fri, Dec 31, 2010 at 12:05 PM, Nikola nikola1...@gmail.com wrote: Anybody willing to take a look at it? Giving your file that should hold an image a .tmp extension is questionable. Why? I would like to store it in

Re: [android-developers] Captured image FileNotFound

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 12:42 PM, Nikola nikola1...@gmail.com wrote: Giving your file that should hold an image a .tmp extension is questionable. Why? I would like to store it in database. Because .tmp is not an image format I'm aware of. Besides that, a Google Search for

Re: [android-developers] Screen Rotation

2010-12-31 Thread Kostya Vasilyev
AsyncTask can be carried through configuration changes by using getLastNonConfigurationData (or some such, I writing this from my phone). The technique was discussed on this list within the last month or two, hopefully you can find it. -- Kostya Vasilyev -- http://kmansoft.wordpress.com

[android-developers] Re: Edit Bitmap Channels?

2010-12-31 Thread John Oliver
Bump? Anyone? On Dec 30, 7:40 pm, John Oliver shreddedched...@gmail.com wrote: It's possible to access the alpha channel of a given bitmap with extractAlpha(), but I haven't been able to find any way to actually set the alpha channel (or any other channel) of a bitmap. How can multiple

Re: [android-developers] Re: app security

2010-12-31 Thread Dianne Hackborn
On Fri, Dec 31, 2010 at 6:15 AM, jacek jacek.ambroz...@gmail.com wrote: So -- how about getting credentials from the Cloud (over SSL) and hiding in AccountManager's Account? Though again, this hasn't protected you, just made it harder. Your data is still there on the device, for someone with

Re: [android-developers] Re: How to read file from assets dir?

2010-12-31 Thread Dianne Hackborn
I regularly put work into the API demos each release. See for example the evolution of the Service class. There is just a large amount of stuff there, and not a lot of time to work on it. If you have a particular part you would like to see improved, I'd be happy to review contributions. On

Re: [android-developers] Captured image FileNotFound

2010-12-31 Thread Nikola
On Fri, Dec 31, 2010 at 7:49 PM, TreKing treking...@gmail.com wrote: On Fri, Dec 31, 2010 at 12:42 PM, Nikola nikola1...@gmail.com wrote: Giving your file that should hold an image a .tmp extension is questionable. Why? I would like to store it in database. Because .tmp is not an image

Re: [android-developers] moving InputMethod to the top

2010-12-31 Thread Dianne Hackborn
On Wed, Dec 29, 2010 at 5:20 AM, guich guiha...@gmail.com wrote: I saw some applications that moves the InputMethod to the top. I very much doubt you did. The IME currently can only be on the bottom. -- Dianne Hackborn Android framework engineer hack...@android.com Note: please don't send

[android-developers] Re: making Toast like notification?

2010-12-31 Thread Emmanuel
I did make a blog entry on the toast customisation subject : http://androidblogger.blogspot.com/2009/10/tutorial-how-to-customize-your-toasts.html So you can modify the look of the toast ! But I do agree with you that the toast is not fulfilling all of our needs, I also though about

Re: [android-developers] Captured image FileNotFound

2010-12-31 Thread TreKing
On Fri, Dec 31, 2010 at 12:59 PM, Nikola nikola1...@gmail.com wrote: Never said that you have to save file with image extension. Why would you have to do that? Does system checks file extensions? I don't know, but if you're trying to save an image to a file, you might as well make sure you

Re: [android-developers] Re: making Toast like notification?

2010-12-31 Thread Kostya Vasilyev
Re: hiding a toast, I believe it's possible if you keep a reference to it and call hide (or dismiss?). -- Kostya Vasilyev -- http://kmansoft.wordpress.com 31.12.2010 22:07 пользователь Emmanuel emmanuel.ast...@gmail.com написал: I did make a blog entry on the toast customisation subject :

[android-developers] Memory Leak in 1.6

2010-12-31 Thread John Gaby
I seem to have a memory leak when running under version 1.6 of the OS. I have a custom view group which contains some controls and I set it to be the current view via a call to setContentView(vg). If I then create a second view group and set it as the active view via setContentView(newVg), the

[android-developers] getting a click event on an activity

2010-12-31 Thread dashman
i'm displaying a splash screen Activity and want to wait for the user the click/press on the screen before proceeding. how can i do this. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Cannot compile Desk Alarm Clock (branch eclair ver 2.1)

2010-12-31 Thread Anil Philip
Alright, I created an ubuntu partition, installed git, repo, eclipse, downloaded the eclair branch of android and built it. Created a Java project using 'existing src' with the android root directory. Was wondering how I should run/step through the Desk Clock application. Since there is no ADT

[android-developers] Re: Cannot compile Desk Alarm Clock (branch eclair ver 2.1)

2010-12-31 Thread longingtoadopt.com
Alright, I created an ubuntu partition, installed git, repo, eclipse, downloaded the eclair branch of android and built it. Created a Java project using 'existing src' with the android root directory. Was wondering how I should run/step through the Desk Clock application. Since there is no ADT

  1   2   >