[android-developers] Re: Android Web Browser profiling

2009-03-11 Thread vinay harugop
meryl, refer thes two file for what you want, JavaScriptCore/kjs/config.h WebCore/WebCorePrefixAndroid.h On Wed, Mar 11, 2009 at 10:43 AM, Meryl Silverburgh < silverburgh.me...@gmail.com> wrote: > > Can you please tell me how to enable ANDROID_INSTRUMENT ? > > > > On Tue, Mar 10, 2009 at 9:45 PM

[android-developers] Re: Help!? Updating our applicatoin on the market deletes the saved SharedPreferences.

2009-03-11 Thread Stoyan Damov
Just vote for it (star it) and you'll get updates directly mailed to you. On Wed, Mar 11, 2009 at 12:24 PM, Al Sutton wrote: > > Anyone found a way of subscribing to an individual issue? I'm sure there > are many people who'd like to follow the progress of this one. > > Al. > > Tyler Ernst wrote

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Stoyan Damov
It's not an issue - restarting your activity when the configuration changes is by design. You can mark your activity in the manifest file as one which deals with configuration changes (hiddenkeyboard, etc.) itself, handle the configuration change yourself and it won't be restarted. On Wed, Mar 11

[android-developers] Re: Help!? Updating our applicatoin on the market deletes the saved SharedPreferences.

2009-03-11 Thread Al Sutton
Of course.. it's so obvious ^^ :). Thanks, Al. Stoyan Damov wrote: > Just vote for it (star it) and you'll get updates directly mailed to you. > > On Wed, Mar 11, 2009 at 12:24 PM, Al Sutton wrote: > >> Anyone found a way of subscribing to an individual issue? I'm sure there >> are many peo

[android-developers] Re: gears database in G1 or emulator

2009-03-11 Thread Peterman
I reply to myself: the location is : /data/data/com.android.browser/ gears On 6 mar, 14:20, Peterman wrote: > Hi to all > > somebody know where is thegearsdatabase in a G1 mobile or Android > emulator? > > I have searching with adb but I don't know where is it. > > thanks to all --~--~-~

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread mobilekid
Thanks Stoyan, Is it a case of declaring the activity with android:configChanges in the AndroidManifest.xml, and then implementing what to reload in the onConfigurationChanged(Configuration) of that particular activity? On Mar 11, 11:23 am, Stoyan Damov wrote: > It's not an issue - restarting

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Stoyan Damov
Yes, basically if you declare your activity's orientation to be "sensor" there's nothing else to do (I think). On Wed, Mar 11, 2009 at 1:39 PM, mobilekid wrote: > > Thanks Stoyan, > > Is it a case of declaring the activity with android:configChanges in > the AndroidManifest.xml, and then impleme

[android-developers] Re: I can't use my Google account to post question at Android Developers

2009-03-11 Thread Mars Alucard
Hi, Justin, Thanks for your kind reply, indeed. Many thanks, Mars Alucard Justin (Google Employee)" wrote: > Hey Mars, there's a moderation delay for first time posters. > Cheers, > Justin > Android Team @ Google --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: Unified Database Populating Solution

2009-03-11 Thread Mark Murphy
Stoyan Damov wrote: > This is not going to happen. If Google rolls out SQLite X.YY and it's > incompatible with the database file format used by currently installed > apps (some probably paid), would you think that the OTA upgrade will > kind of search for all SQLite databases on the device (some

[android-developers] [Apps question] user dictionary

2009-03-11 Thread Morris
Hi All: I couldn't use the function of user dictionary. Is it not complete for android 1.5 or Is it my program issue? Thanks. Morris --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos

[android-developers] Re: Conditionally process AndroidManifest.xml?

2009-03-11 Thread Mark Murphy
Carl Whalley wrote: > If you use the OI SensorSimulator you must add the INTERNET permission > to AndroidManifest.xml as it uses http to drive it, which Android sees > as a function requiring this permission. When you release your app, > presumably its not using the software simulator so you can t

[android-developers] Re: Spanned How to use?

2009-03-11 Thread John Doe
I am really trying hard to figure it out :( Probably it has a very easy way to implement but I couldnt discover. Spanned spanned; spanned = Html.fromHtml(content); I am looking inside spanned and I see that all image url's and text is properly kept. There must be a way to reach them. Can you he

[android-developers] Re: How to creat Toast Like view

2009-03-11 Thread Gulfam
Hi Tushar You can make toast like this public void showAlertMessage(Context context, String text){ LayoutInflater inflater = (LayoutInflater)context.getSystemService (Context.LAYOUT_INFLATER_SERVICE); View view = inflater.inflate(R.layout.toast_layout, null); // set the

[android-developers] Re: How to intercept SMS without loading SMS to UI?

2009-03-11 Thread Gulfam
Hi all, My requirements are same as mentioned by Kenny Yu any one can help regarding this that How discard or delete that sms at interception time. Regards, Gulfam On Mar 11, 2:47 pm, Kenny Yu wrote: > Requirement: > 1. The program must be on top of SDK only, no hacking! > 2. When a TEXT SMS i

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread mobilekid
For some reason that seems not to work in my case. I've declared the activity as android:configChanges="orientation" in the AndroidManifest.xml, which I assume will call onConfigurationChanged (Configuration). So for testing purposes I've simply implemented it as follows: @Override public void on

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Stoyan Damov
keyboardHidden|orientation On Wed, Mar 11, 2009 at 2:34 PM, mobilekid wrote: > > For some reason that seems not to work in my case. I've declared the > activity as android:configChanges="orientation" in the > AndroidManifest.xml, which I assume will call onConfigurationChanged > (Configuration).

[android-developers] Where do I get the selection color?

2009-03-11 Thread Mariano Kamp
Hi, I'd like to use the standard selection color when clicking on a list item. Where do I get it from? Cheers, Mariano --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gro

[android-developers] 3D Rendering Library

2009-03-11 Thread and.pradeep
Hi, Is Vincent3d Rendering Library or any other library supports OpengGLES 1.1 in Android for drawing 3D graphics . or is there any other libraried available? Regards Pradeep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Go

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Marco Nelissen
That will solve the problem when opening/closing the keyboard, but won't solve it when e.g. starting the app and then immediately hitting the back button to exit it. On Wed, Mar 11, 2009 at 5:37 AM, Stoyan Damov wrote: > > keyboardHidden|orientation > > On Wed, Mar 11, 2009 at 2:34 PM, mobileki

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread mobilekid
Sweet! Thank you! On Mar 11, 12:37 pm, Stoyan Damov wrote: > keyboardHidden|orientation --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develo

[android-developers] AndroidManifest.xml file missing!

2009-03-11 Thread royzha...@gmail.com
HI: I built ADT and integrated it to eclipse, and build android source code in eclipse. It reports as following: Description ResourcePathLocationType AndroidManifest.xml file missing! android Unknown Android ADT Problem Can u help me to resolve it? THX -

[android-developers] Re: How to explicitly launch the system's Home application by code?

2009-03-11 Thread MrSnowflake
But using CATEGORY_HOME won't solve his problem. On 10 mrt, 19:41, Romain Guy wrote: > Don't use the package and class name directly, this will work only for > the current default Home screen. Use an Intent with the CATEGORY_HOME > instead. > > > > > > On Tue, Mar 10, 2009 at 11:40 AM, MrSnowfla

[android-developers] Re: 24MB in RAW folder -- when running showing "INSTALL_FAILED_INSUFFICIENT_STORAGE"

2009-03-11 Thread MrSnowflake
I don't think you can put them on the SD by installation. I think you have to make an 'installer' which downloads the mp4 files from the web and saves them to sd. On 10 mrt, 06:06, Nithin wrote: > Hi, > > We have 10 mp4 files, total size is about 24MB. We put all in RAW > folder and tried to run

[android-developers] Unreproduceable error on my market app. Can any devs test, possibly do a logcat to get the error?

2009-03-11 Thread Colin
The application is PinPoint Locations, it is available on the Market. People keep getting force close but I cannot reproduce the same error! Can anyone help? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Dev

[android-developers] Re: https://dl-ssl.google.com/android/eclipse/ not reachable

2009-03-11 Thread John Doe
http://dl-ssl.google.com/android/eclipse/ instead of https://dl-ssl.google.com/android/eclipse/ in other words, try http not https. that worked for me -- www.androidturkiye.net On Mar 11, 1:59 am, kmm wrote: > I am having the same issue. > When using the new link, I am getting: > > Loadinght

[android-developers] Re: Touch *extremely* expensive performance-wise

2009-03-11 Thread MrSnowflake
But won't it affect other Activity stuff and life cycle functions and such? On 10 mrt, 19:48, Stoyan Damov wrote: > sure, it should work - I think someone has already done that > > > > On Tue, Mar 10, 2009 at 8:26 PM, MrSnowflake wrote: > > > I have a question about this: While sleeping the ui

[android-developers] run ActivityThread with error

2009-03-11 Thread royzha...@gmail.com
Hi All : run ActivityThread with error log as following. Who can help me ? Thx # # An unexpected error has been detected by Java Runtime Environment: # # Internal Error (classFileParser.cpp:2924), pid=9482, tid=3085081488 # Error: ShouldNotReachHere() # # Java VM: Java HotSpot(TM) Client V

[android-developers] Re: No Latitude in ADP1.1

2009-03-11 Thread shimsim
Not sure it help anyone but there is an app on the market called latitude launcher and it enables latitude on adp1.1. I tried it on mine today at it seems to work but as I have never seen it working on a regular g1 I can't confirm it works the same. On Mar 11, 6:22 pm, Al Sutton wrote: > And

[android-developers] Re: Loading 3D Models

2009-03-11 Thread Robert Green
I've seen a few games that have 3ds loaders and would like to get a hold of one but currently do not have that. I'm using 3dsmax for my game and am still in search for a good solution for getting the mesh and UVW coordinates in. On Mar 11, 2:52 am, geoff wrote: > How are people here loading in

[android-developers] Re: No Latitude in ADP1.1

2009-03-11 Thread shimsim
sorry, its called latitude enabler for root. On Mar 11, 10:10 pm, shimsim wrote: > Not sure it help anyone but there is an app on the market called > latitude launcher and it enables latitude on adp1.1. > > I tried it on mine today at it seems to work but as I have never seen > it working on a r

[android-developers] Re: Layout question: top and bottom TextView

2009-03-11 Thread Rui Vieira
This is solved, I just needed to change the weight of the views. On Mar 10, 10:51 pm, Rui Vieira wrote: > Hi everyone, > > Sorry for the noob question, but I'm just starting with Android... > > I was working on my Hello-World-type application, and wanted to place > a text view aligned to the top

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Stoyan Damov
unless he traps the back button in onKeyDown On Wed, Mar 11, 2009 at 2:51 PM, Marco Nelissen wrote: > > That will solve the problem when opening/closing the keyboard, but > won't solve it when e.g. starting the app and then immediately hitting > the back button to exit it. > > > On Wed, Mar 11,

[android-developers] Re: Market and Developer Frustration

2009-03-11 Thread markz
Hi, That's great. Don't know how I misunderstood... but thanks for the clarification. Mark On Mar 10, 7:50 pm, "Justin (Google Employee)" wrote: > > c) As I understand it there's no way to update an app without charging > > for it again. That's ok for a game but not so cool for something more >

[android-developers] Re: Touch *extremely* expensive performance-wise

2009-03-11 Thread Streets Of Boston
I would think so too. As soon as you execute wait statements in your main message- dispatching thread (e.g. sleeps, waits, waiting for I/O, long lasting loops, joins, etc.), you run the risk of the application getting unresponsive. Android may pop up a message telling the user that the applicatio

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Streets Of Boston
I've been dealing with the same issues and i tried all these. And nothing seems to work well. First of all, having a thread that's part of your activity running after your activity's onDestroy has been called is tricky. It can lead to memory-leaks, etc. I finally decided to create a Service for t

[android-developers] Android Telephony

2009-03-11 Thread Shrikant Agrawal
Hi I want to find the network signal strength for my app. But I cant find the api for it. Do anybody know how to find the signal strength of the phone? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android

[android-developers] WebView issue...

2009-03-11 Thread Marc
So I've got a WebView, and in its content is a phone number. I hightlight it and click - voila, taken to the phone app. Now, all I do is add this code: wv.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoadi

[android-developers] Re: Change height of notification?

2009-03-11 Thread Marc
bump On Mar 10, 10:11 am, Marc wrote: > Is there any way to change the height of the "extended" notification > (i.e. the contentView in the Notification)?   It seems like I get the > standard two lines no matter what...   I'm thinking I've missed > something, but ... > > TIA > > Marc --~--~-

[android-developers] how to export the sound from mike to earpiece directly

2009-03-11 Thread cht
i want to design an application use to test the mike and the earpiece at the same time. i want to export the sound from mike to the earpiece directly, then i can hear the voice from the earpiece at once i speak to the mike. please give me some directories, how can i implements that. thank you. -

[android-developers] Is there a large efficiency difference between Canvas.drawBitmap or OpenGL?

2009-03-11 Thread William
Greetings Developers, I am just putting this question out there. Is there a large efficiency difference between Canvas.drawBitmap or OpenGL. I am drawing using Canvas.drawBitmap and running slowing FPS, would openGL speed that up a lot you think? --~--~-~--~~~---~--~

[android-developers] Re: Is there a large efficiency difference between Canvas.drawBitmap or OpenGL?

2009-03-11 Thread Stoyan Damov
What is it that you are drawing, how are you drawing it, have you profiled your code? On Wed, Mar 11, 2009 at 5:31 PM, William wrote: > > Greetings Developers, > > I am just putting this question out there. > > Is there a large efficiency difference between Canvas.drawBitmap or > OpenGL.  I am d

[android-developers] Re: Merchant account signup down?

2009-03-11 Thread jsdf
Bump! It's been down for 15 hours for me now. I submitted a help request to Google, but of course it probably got routed to the black hole that is tech support. Please can anyone confirm?? Anyone from Google able to help on this?? Thanks. On Mar 10, 8:16 pm, jsdf wrote: > I am trying to sign up

[android-developers] Re: Where do I get the selection color?

2009-03-11 Thread Romain Guy
It's not a single color, but a gradient defined in a 9patch. On Wed, Mar 11, 2009 at 5:39 AM, Mariano Kamp wrote: > Hi, > >   I'd like to use the standard selection color when clicking on a list item. > Where do I get it from? > > Cheers, > Mariano > > > > -- Romain Guy Android framework eng

[android-developers] Video Capturing

2009-03-11 Thread mobilek...@googlemail.com
Hi, Is video capturing currently supported in the latest SDK? The sequence diagram from the class description of MediaRecorder (http:// developer.android.com/reference/android/media/MediaRecorder.html) made me believe it's possible, however, it seems that the video related methods are not supporte

[android-developers] Re: Video Capturing

2009-03-11 Thread Mark Murphy
mobilek...@googlemail.com wrote: > Is video capturing currently supported in the latest SDK? Not yet. An upcoming Android release and SDK (code named "cupcake") should have video recording, as I understand it. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to And

[android-developers] Re: Merchant account signup down?

2009-03-11 Thread Al Sutton
You aren't going to get an official response from Google on this list. The Google engineers here are developers who get involved in technical discussions. You are now at the mercy of Googles support infrastructure. Al. jsdf wrote: > Bump! > It's been down for 15 hours for me now. > I submitte

[android-developers] db4o Object Database Android Demos Updated

2009-03-11 Thread German
Hi. For those of you who never heard about db4o -> it's an Android complaint open source object database with a thriving user community (http://developer.db4o.com). It allows you to store/retrieve POJOs directly (no tables, no rows, no cursors) without sacrificing speed, flexibility and reliabili

[android-developers] Re: Loading 3D Models

2009-03-11 Thread tathagatac
Sounds interesting. What kind of FPS are you getting? It would be interesting to have a triangles vs FPS graph. On Mar 11, 1:52 pm, geoff wrote: > How are people here loading in their models? > > I'm just manually parsing a OBJ file into my own model class and > drawing that. --~--~-~--

[android-developers] Re: Loading 3D Models

2009-03-11 Thread Markus Feuerstein
Hi! I'm really interested in this issue too! I would be very pleased if someone could share their experience! Anyway, does someone know some good opengl 'tutorials' or documentations? Regards markus On Mar 11, 2009 9:53 AM, "geoff" wrote: How are people here loading in their models? I'm just

[android-developers] Re: Accessing the internet.

2009-03-11 Thread ku fu panda
public static InputStream getInputStreamWithHttpClient( String resourceURL ) throws IOException { // Create an instance of HttpClient. HttpClient client = new DefaultHttpClient(); // Create a method instance. HttpGet method = new HttpGet( resourceURL );

[android-developers] Issue 2204: logcat service can not run while add parameters -n 2

2009-03-11 Thread eagle black
hi all, I found a bug at android platform. *Please describe the problem in as much detail as possible. Be sure to include:* *- Steps to reproduce the problem* 1 . modify init.hardware.rc (hardware is your platform hardware, such init.goldfish.rc) change service logcat /system/bin/logcat -r 1000

[android-developers] How can I play a custom animation between 2 activity?

2009-03-11 Thread tcassany
Hello, I search a way to play a custom animation (as slide animation on the emulator) to do a transition between the end of an activity and the begin of an other? Thanks, Thomas --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[android-developers] Can someone make me an app?

2009-03-11 Thread AzonCigars.com
I would like someone to make an app for me. I am willing to pay for it and hope to list it on the android market. The app would be a niche app, only downloaded by certain people. If you are interesting in making the app for me please email me. Thanks! --~--~-~--~~~---

[android-developers] Re: Accessing the internet.

2009-03-11 Thread ku fu panda
public static InputStream getInputStreamWithHttpClient( String resourceURL ) throws IOException { // Create an instance of HttpClient. HttpClient client = new DefaultHttpClient(); // Create a method instance. HttpGet method = new HttpGet( resourceURL );

[android-developers] [RFC PATCH] fix the Issue 2204: logcat service can not run while add parameters -n 2

2009-03-11 Thread eagle black
Deer all: I think my patch can fix this problem. diff -uprN original/init.h now/init.h --- original/init.h 2009-03-11 14:27:20.0 +0800 +++ now/init.h 2009-03-11 14:29:32.0 +0800 @@ -136,14 +136,15 @@ struct service { struct socketinfo *sockets; struct svcenvinfo *en

[android-developers] Re: Issue 2204: logcat service can not run while add parameters -n 2

2009-03-11 Thread eagle black
Deer all; I think I have fix this problem. The reason is struct service { /* list of all services */ struct listnode slist; const char *name; const char *classname; unsigned flags; pid_t pid; time_t time_started;/* time of last start */ time_t time_crash

[android-developers] Download of [Application} was unsuccessful

2009-03-11 Thread ads_78
Hi, I have an app on the android market and am getting complaints that the download is unsuccessful. I know it is usually installing ok though. A) Is this download failure my fault? B) Is there anything I can do to make it less likely? C) What should I tell users whose download fails? Should th

[android-developers] Re: Android Testing with TMobile G1

2009-03-11 Thread Seufster
Hi gents I am running fedora 8 with eclipse and have the sdk and plugin setup. It work like a champ. I have regular g1 with the debug on and developed one app sofar and it has worked great with no real issues. I really liked the live debug option. Ed On Mar 10, 5:54 pm, mark.ka...@gmail.com wrot

[android-developers] Re: Merchant account signup down?

2009-03-11 Thread keith_hi...@yahoo.com
I am having the same issue. Been trying since yesterday to get this resolved. Google as of yet has not responded to my tech support request. On Mar 10, 9:16 pm, jsdf wrote: > I am trying to sign up for a merchant account but it seems to be down: > "Sorry, we could not setup your merchant account

[android-developers] How to create a fixed size(eg. 30x30 ) main window?

2009-03-11 Thread Goldeneye
Hi, I'm a newbie in android, and not good at java too. I suppose this is a very simple question, could you give me the clue? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] Where can I get com.google.googlenav Package

2009-03-11 Thread jenny
Hi everyone, I am working on a GPS navigation App. I notice that com.google.googlenav Package is available in Android SDK-m5,but in the source code, there is nothing about googlenav. However, the package is necessary for drive direction development on the device. Could anyone please tell m

[android-developers] Contact change broadcast

2009-03-11 Thread LambergaR
Hello all! Is there a broadcast message dispached when a contact is changed or added in Android's native contact book? If not, what would be the most efficient way to check for changes? Secend of all, what would be the most efficient method for sending a file (image) using HTTP POST request? Th

[android-developers] Re: How to use IOCTL() to access H/W, via Sahred Library + JNI or else, in Android applications?

2009-03-11 Thread tec
hi all, I occurred the familiar issue with that. I want to open the /dev/snd/hwC0D0 to do the I/O control. But the different thing is that I failed at opening the device node. Dear Mars, Did you find the same situation while opening the device node? Since I wrote this code into Android ALSA part

[android-developers] Attn: Android Engineers. Feature request

2009-03-11 Thread Colin
There may be issues with this, but I have run into problems developing for android that could easily be solved by this: Maybe add an option in your manifest that stats that youd like to give customers the option to send bug reports to the developer on application crash. This way if the customer c

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Marco Nelissen
Sure, but then what if right as the activity is starting, something else happens that causes it to be destroyed? (incoming phone call, camera app is started, it could be anything, really) My point was: instead of putting in all these hacks to try and prevent your activity from being stopped and r

[android-developers] Re: How can I play a custom animation between 2 activity?

2009-03-11 Thread Dianne Hackborn
Transition animations are not enabled by default in current Android. You must have turned it on somehow in your emulator. On Wed, Mar 11, 2009 at 3:38 AM, tcassany wrote: > > Hello, > > I search a way to play a custom animation (as slide animation on the > emulator) to do a transition between

[android-developers] Re: Change height of notification?

2009-03-11 Thread Dianne Hackborn
No the height is deliberately restricted. On Tue, Mar 10, 2009 at 10:11 AM, Marc wrote: > > Is there any way to change the height of the "extended" notification > (i.e. the contentView in the Notification)? It seems like I get the > standard two lines no matter what... I'm thinking I've miss

[android-developers] Re: Touch *extremely* expensive performance-wise

2009-03-11 Thread Dianne Hackborn
The ANR dialog is shown when you aren't responsive for 5 seconds. We should be talking about waiting for ~20ms only for motion events. These are in completely different realms. On Wed, Mar 11, 2009 at 7:22 AM, Streets Of Boston wrote: > > I would think so too. > > As soon as you execute wait st

[android-developers] Re: How to explicitly launch the system's Home application by code?

2009-03-11 Thread Dianne Hackborn
Query the package manager for all home activities, and pick the one that has the SYSTEM flag set. On Wed, Mar 11, 2009 at 6:26 AM, MrSnowflake wrote: > > But using CATEGORY_HOME won't solve his problem. > > On 10 mrt, 19:41, Romain Guy wrote: > > Don't use the package and class name directly, t

[android-developers] Re: Spanned How to use?

2009-03-11 Thread Dianne Hackborn
What are you trying to do? Like I said, the main purpose of this API is to create styled text that can be given to TextView for display. If you want to do your own display of that stuff, you'll need to write your own text layout engine line TextView (or using the existing layout stuff like it alr

[android-developers] Re: [Apps question] user dictionary

2009-03-11 Thread Dianne Hackborn
There is no android 1.5, and cupcake is still in development. And this should be asked on the platform groups. On Wed, Mar 11, 2009 at 4:53 AM, Morris wrote: > > Hi All: > > I couldn't use the function of user dictionary. > Is it not complete for android 1.5 or > Is it my program issue? > > Tha

[android-developers] Re: Adding self to menus on other applications

2009-03-11 Thread Dianne Hackborn
Doing a broadcast is definitely better than making people sit around watching all the time. Still, it is better yet not to rely on either -- if you are relying on this to keep your data in sync, you can pretty much be guaranteed that one way or another in some situation you will get out of sync. :

[android-developers] Re: Attn: Android Engineers. Feature request

2009-03-11 Thread Jean-Baptiste Queru
Please mention this a http://b.android.com so that we don't lose track of it. Thanks, JBQ On Wed, Mar 11, 2009 at 11:08 AM, Colin wrote: > > There may be issues with this, but I have run into problems developing > for android that could easily be solved by this: > > Maybe add an option in your

[android-developers] New Fee Structure?!?!

2009-03-11 Thread csyperski
I just got an email about the new fee structure for the android market, and I must say, it doesn't look good. It is going from 2% + $0.20 -> 2.9% + $0.30 This upsets me, because, it doesn't make sense to see apps for a low price ($0.99) on the market any longer, I am going to have to raise my ra

[android-developers] Re: Where do I get the selection color?

2009-03-11 Thread Mariano Kamp
Ah, thanks - where can I find the gradient defined in a 9patch? On Wed, Mar 11, 2009 at 5:57 PM, Romain Guy wrote: > > It's not a single color, but a gradient defined in a 9patch. > - Show quoted text - > > On Wed, Mar 11, 2009 at 5:39 AM, Mariano Kamp > wrote: > > Hi, > > > > I'd like to use

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Dianne Hackborn
Yes, a Service is what you want to use if you want to continue doing work after the user has exiting your app. The original poster I think is dealing with thread that are just supposed to be running while the app is being used, in which case I would avoid using a Service, since that is likely to i

[android-developers] Re: New Fee Structure?!?!

2009-03-11 Thread Inderjeet Singh
This rate will not apply to you for Android transactions where the rate is 30% flat on the pre-tax amount. This rate applies only if you used Google Checkout to sell other goods on an Internet store. On Wed, Mar 11, 2009 at 12:03 PM, csyperski wrote: > > I just got an email about the new fee s

[android-developers] Re: New Fee Structure?!?!

2009-03-11 Thread Streets Of Boston
I don't think this is the right discussion group for this, but i would say: Don't worry. Here is the link: http://checkout.google.com/seller/fees.html This seller-fee is the same type of fee as is shown currently on you seller checkout-page (2% +0.20). In other words, it does not apply to your A

[android-developers] Problem Troubleshooting Vista ADB USB Connection.

2009-03-11 Thread JLMG
This one is kinda weird... I have a Ubuntu 8.10 box with everything including Eclipse working perfectly, both the emulator and USB connection to my ADP1... works perfectly! But I decide to inflict Vista on myself by attempting to get Eclipse and ADT working on my Vista laptop. I set up Vista wi

[android-developers] Risk of upgrading to 1.1?

2009-03-11 Thread Tim Bray
I was going to keep my SDK at 1.0 because for my own app I don't need any 1.1 stuff and I'd like it to work on as many devices as possible. If I upgrade my dev-phone to 1.1 just because I'd like a nicer phone, is there any appreciable risk that it will fail to detect problems that might occur on 1

[android-developers] startActivityForResult problems

2009-03-11 Thread Geos
Hello All I've use startActivityForResult as it described in many examples but it return 0 result code after start new Activity. In main Activity I use such code for sub activity invocation Intent iShowVideo = new Intent(EventHandling.this, ShowVideo.class); sta

[android-developers] Re: Change height of notification?

2009-03-11 Thread Marc
Thanks, Dianne! Marc On Mar 11, 11:12 am, Dianne Hackborn wrote: > No the height is deliberately restricted. > > On Tue, Mar 10, 2009 at 10:11 AM, Marc wrote: > > > Is there any way to change the height of the "extended" notification > > (i.e. the contentView in the Notification)?   It seems l

[android-developers] Re: Change height of notification?

2009-03-11 Thread Marc
BTW, that should probably be documented somewhere (i.e. that you can use a custom view, but it's restricted in that way...) Marc On Mar 11, 1:28 pm, Marc wrote: > Thanks, Dianne! > > Marc > > On Mar 11, 11:12 am, Dianne Hackborn wrote: > > > No the height is deliberately restricted. > > > On T

[android-developers] List of countries & carriers

2009-03-11 Thread Noonien Soong
Does anyone know a list of countries and carriers where phones with the Android OS can be bought? I searched for a while for this now but haven't found anything... Thx! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group

[android-developers] Re: Custom icon on notification

2009-03-11 Thread Wesley
So, are the resource ids unique across all applications on the phone ? What about new applications being downloaded, how would this work ? On Mar 10, 7:42 pm, Zero wrote: > resource id can be any id from your project as well. should work just > fine. > > On 10 Mrz., 18:52, Wesley wrote: > > > I

[android-developers] Re: Risk of upgrading to 1.1?

2009-03-11 Thread Stoyan Damov
I have released my game on 19th of February, built against SDK 1.1 but no minSdkVersion, and tested on my G1 w/ 1.1, i.e. it should be working on 1.0 devices. So far I haven't got a report that it's not working on any device, other than the intermittent "Force Close" issues after an update. Botto

[android-developers] Re: Risk of upgrading to 1.1?

2009-03-11 Thread Jean-Baptiste Queru
Well, there is a risk that a bug in 1.0 that would have been fixed in 1.1 could be hit by your application. I'm not explicitly aware of such situations, but that's definitely possible in theory. It is possible (and in fact reasonably easy) to downgrade an ADP1 back to 1.0, the drawback being that

[android-developers] Am I being banned from the list?

2009-03-11 Thread Stoyan Damov
Hi, It's the 2nd post for which I'm getting: --- The original message was received at ... The following addresses had permanent fatal errors (552 5.2.2 minokr: mbox is over quota) Final-Recipient: RFC822; min...@hanmail.net Action: failed Status: 552 5.2.2 minokr:

[android-developers] Re: How to explicitly launch the system's Home application by code?

2009-03-11 Thread MrSnowflake
Nice, thanks! On 11 mrt, 19:14, Dianne Hackborn wrote: > Query the package manager for all home activities, and pick the one that has > the SYSTEM flag set. > > > > > > On Wed, Mar 11, 2009 at 6:26 AM, MrSnowflake wrote: > > > But using CATEGORY_HOME won't solve his problem. > > > On 10 mrt, 19

[android-developers] Re: Change height of notification?

2009-03-11 Thread MrSnowflake
On 11 mrt, 21:30, Marc wrote: > BTW, that should probably be documented somewhere (i.e. that you can > use a custom view, but it's restricted in that way...) If you'd do that, you would have to document everything you can't do, which would be the wrong way around, I believe. > > Marc > > On Mar

[android-developers] Re: Change height of notification?

2009-03-11 Thread Marc
Can you think of another case in which you can supply a layout to an API, but the layout is largely ignored? Marc On Mar 11, 2:25 pm, MrSnowflake wrote: > On 11 mrt, 21:30, Marc wrote:> BTW, that should probably > be documented somewhere (i.e. that you can > > use a custom view, but it's rest

[android-developers] Re: Custom icon on notification

2009-03-11 Thread MrSnowflake
On 11 mrt, 21:49, Wesley wrote: > So, are the resource ids unique across all applications on the phone ? Probably not, but does it matter? The NotificationManager probably gets the drawable from the context it got called and used from. > What about new applications being downloaded, how would th

[android-developers] Re: Risk of upgrading to 1.1?

2009-03-11 Thread MrSnowflake
On 11 mrt, 21:59, Jean-Baptiste Queru wrote: > Well, there is a risk that a bug in 1.0 that would have been fixed in > 1.1 could be hit by your application. I'm not explicitly aware of such > situations, but that's definitely possible in theory. A very valid situation. But does it matter? All A

[android-developers] Re: Am I being banned from the list?

2009-03-11 Thread clark
Your message showed up under the thread you posted to "[android- developers] Re: Risk of upgrading to 1.1?", right above JBQ, so I do not think you are being banned. You may want to look for other causes for this problem. ~clark On Mar 11, 2:16 pm, Stoyan Damov wrote: > Hi, > > It's the 2nd p

[android-developers] SSL client authentication

2009-03-11 Thread telematics
I am new on SSL programming. The Android app I am developing needs to open an SSL socket to a secure server which requires the client authentication. When running on the Emulator and trying to talk to a Server running on the host PC, the following Android code snippet always gives me a SocketExcep

[android-developers] Re: Is there a large efficiency difference between Canvas.drawBitmap or OpenGL?

2009-03-11 Thread MrSnowflake
I think it probably would speed up your drawing, but OpenGL probably also uses more battery because it needs the hardware gpu to be enabled too. On 11 mrt, 16:46, Stoyan Damov wrote: > What is it that you are drawing, how are you drawing it, have you > profiled your code? > > > > On Wed, Mar 11,

[android-developers] Re: Am I being banned from the list?

2009-03-11 Thread Stoyan Damov
Thank you for the prompt reply. I don't know what could be the problem, I'm posting by sending my posts to android-developers@googlegroups.com thru GMail. Cheers On Wed, Mar 11, 2009 at 11:38 PM, clark wrote: > > Your message showed up under the thread you posted to "[android- > developers] Re

[android-developers] Re: Am I being banned from the list?

2009-03-11 Thread Jean-Baptiste Queru
I got one of those too. My guess is that some member on the list has an auto-auto-responder because their mailbox is full. JBQ On Wed, Mar 11, 2009 at 2:45 PM, Stoyan Damov wrote: > > Thank you for the prompt reply. > > I don't know what could be the problem, I'm posting by sending my > posts t

[android-developers] Re: Issue with Threads and onCreate()

2009-03-11 Thread Timo Bruck
Dianne... instead of making a Handler subclass, would it be just as effective to have the Handler be a field of a custom Thread class which is reset by a dying activity instance in onRetainNonConfigurationInstance() and set by the new activity instance in onCreate()? Instead of retaining the hand

[android-developers] Slow Scrolling

2009-03-11 Thread Al
Hi, sometimes when I try to scroll using a scrollview (wrapped around a textview), there will be no response. I've noticed this in both my apps and the only common thing between them is the textview in both apps use Spanned (SpanableStringBuilder to be exact) text. This happens even when there is

  1   2   >