[android-developers] Re: Feedback Experiment active in the developer console

2010-05-20 Thread Kevin Gaudin
Maybe a date based activation ? Kevin On 20 mai, 02:55, Zsolt Vasvari zvasv...@gmail.com wrote: I am in Singapore and it appeared for me as well.  I was just thinking yesterday how incredible it was that I had never noticed it earlier. But how did it get added?  I didn't install any

[android-developers] how to add a lisener to a image which in the overlay

2010-05-20 Thread 徐洪跃
hi.all,i want to add a listner to a image which in the overlay so thata dialog will exists after i click the image int the map, thanks ! -- 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: Buttons looking weird when they are too small

2010-05-20 Thread skink
On May 20, 3:03 am, Divkis divick.kish...@gmail.com wrote: On May 19, 11:24 pm, skink psk...@gmail.com wrote: when you use standard button drawables, they specify that extra margins you are talking about, see btn_default*.* fIles under your sdk root - btn_default.xml in particular

[android-developers] Problem while passing aray list to next activity in widget application

2010-05-20 Thread sunita
Hi all... I am trying to create app widget.In this widget I have added one image button.If i click on this button i should pass list of object to next activity.Before passing this list to activity I am converting it to parceable list and adding it to bunddle and puting that bundle to

[android-developers] Signal strength icon in Android status bar - what does it represent and how?

2010-05-20 Thread Mathias Lin
I want to show a signal strength icon in my application with the same logic as the icon is doing in the standard Android status bar. But I am wondering, what exactly does this icon represent and what kind of scale is it using? Does it represent the gsm signal strength as of

RE: [android-developers] Problem while passing aray list to next activity in widget application

2010-05-20 Thread Tommy
Why not save the object to a global variable and access it in your next activity? Something like public class myArrayList extends Application{ private ArrayListWhatever myList; public ArrayListWhatever getList(){ return myList; } public void setArrayList(ArrayListWhatever ArrayListFromActivity){

[android-developers] Re: Is Google working on the Bluetooth bug? Any estimated date of completion?

2010-05-20 Thread frankentux
I updated my firmware to the latest available version from http://samsung-firmwares.com and bluetooth spp (as checked with the HxM heart rate monitor) worked out of the box. Ciaran On May 16, 7:01 pm, frankentux cfarrell1...@googlemail.com wrote: Dan, what is the build id that you mean? Can

[android-developers] trouble with TARGET_BUILD_TYPE=debug and buildspec.mk

2010-05-20 Thread NimeshChanchani
i'm having trouble with buildspec.mk . i copied buildspec.mk.default to buildspec.mk . added And I changed TARGET_BUILD_TYPE to debug. but when i make cleaned and then gave make , I got the following :(see below) .It has got TARGET_BUILD_TYPE=release instead of debug. This makes me wonder if the

[android-developers] How to force Activity to call finalize()?

2010-05-20 Thread Jiang
My application contains 2 activities A and B. B is opened with startActivity(intent) in A, when B is closed with finish(), I found the method finalize() of B is not called. My question is: How to force Activity to call finalize() when it is closed with finish()? Thanks. -- You

[android-developers] Re: Addition of controls dynamically

2010-05-20 Thread Kumar Bibek
Each Layout has a few methods to add child views to it at run time. Check out those methods. It's farely easy to do it. Thanks and Regards, Kumar Bibek On May 20, 9:55 am, Soumya soumyakanti...@gmail.com wrote: Hi, Can anyone tell me how to add controls dynamically in a layout similar to

[android-developers] Re: starting application using a URL or other method?

2010-05-20 Thread Kumar Bibek
From a simple HTML URL ?? I don't think it is possible. Even the Context menu doesn't provide you with an option to generate or trigger an event which your application can capture. Thanks and Regards, Kumar Bibek On May 14, 11:47 pm, Latoune lato...@gmail.com wrote: Hi all, I would like to be

[android-developers] google finance autosuggestion on query on ticker symbol

2010-05-20 Thread puneet dhami
hi I am looking to replicate the functions of the google Get Quote search. Example on http://www.google.com/finance?q=TSE%3ATCS : when you start typing in the the company ticker or name it will give suggestions and you can click on one and go to the page Thanks -- You received this message

[android-developers] Re: how to add new table for a existing database

2010-05-20 Thread Kumar Bibek
For a production app, you will need to write the create query for the new table in onUpgrade method. You need to change the Database version as well. Thanks and regards, Kumar bibek On May 20, 3:47 am, Brion Emde brione2...@gmail.com wrote: If you are talking about during development, perhaps

[android-developers] Search Query Returns 0 rows

2010-05-20 Thread mike
hi guys, this is my Query String name = Mike ; Cursor cursor = getContentResolver().query(Phones.CONTENT_URI, null, Phones.NAME + =' + name + ', null, Phones.NAME + ASC); and name exists in the

[android-developers] Search Query Returns 0 rows

2010-05-20 Thread mike
hi guys, this is my Query String name = Mike ; Cursor cursor = getContentResolver().query(Phones.CONTENT_URI, null, Phones.NAME + =' + name + ', null, Phones.NAME + ASC); and name exists in the

[android-developers] Re: Installation date of an application in a device

2010-05-20 Thread Isidoro Castell
I see that /data/app directory have information about date and time of installed applications. But the bad news is that this directory is not accesible through code. Anyone knows how I can get this information or how I can access to this directory (/data/app/)? Thanks! -- You received this

[android-developers] Re: Addition of controls dynamically

2010-05-20 Thread Soumya
Hi, I have tried some sample code but I always get force close menu. Can you please provide some sample code on how to do it. I am not able to make it work properly. On May 20, 12:55 pm, Kumar Bibek coomar@gmail.com wrote: Each Layout has a few methods to add child views to it at run time.

[android-developers] When Activity is closed, its fields is not release, how to resolve this issue.

2010-05-20 Thread Jiang
In the followingscenario, the fields of Activity is not released when the Activity is closed with calling finish(). Class MyClass { } public MyActivity extends Activity {     private MyClass obj;     public void onCreate(xxx)     {                

[android-developers] Problem with light sensor

2010-05-20 Thread qvark
Hi there, I'm having some troubles with the light sensor on the Nexus One. AFAIK, the proper way to read the measures of a sensor is registering a SensorListener through the SensorManager and then wait for the readings on the onSensorChanged method. My main problem is that the light sensor don't

[android-developers] Re: Petitions to Google

2010-05-20 Thread blackbitshi...@googlemail.com
On 20 mayo, 03:11, Indicator Veritatis mej1...@yahoo.com wrote: Concerning your proposal of conditional compilation: I had an interesting conversation with someone who had worked at Javasoft for many years. I asked him specifically what they were thinking when they decided not to include

[android-developers] Re: Addition of controls dynamically

2010-05-20 Thread Soumya
I have been able to find the code. It was an example part of the SDK. It specified on how to add the controls. Removal of controls are to be done in the same manner. The example was scrollview2.java. Here is the snippet: LinearLayout layout = (LinearLayout)findViewById(R.id.layout); EditText et =

[android-developers] Re: Addition of controls dynamically

2010-05-20 Thread Soumya
I have been able to find the code. It was an example part of the SDK. It specified on how to add the controls. Removal of controls are to be done in the same manner. The example was scrollview2.java. Here is the snippet: LinearLayout layout = (LinearLayout)findViewById(R.id.layout); EditText et =

[android-developers] Re: ToggleButton has broken.

2010-05-20 Thread Sasaki
I found DateWidgets also broken. http://www.downspade.com/images/device2.png I have checked ToggleButton image in resource file using getResource Method, But, ToggleButton image named button_onoff_indicator_off has not broken. What's happen in my device? Some one give me advice. -- You

[android-developers] Re: Petitions to Google

2010-05-20 Thread blackbitshi...@googlemail.com
On 20 mayo, 05:49, Xavier Ducrohet x...@android.com wrote: Making petition to make us do something is an absolute waste of time. Filing reasonable feature request (http://b.android.com) with a concise explanation why the feature is needed has a much better chance of success. Thanks

[android-developers] How to find memory leak?

2010-05-20 Thread Jiang
When start Activity A, I found the memory usage of application is about 5MB, Then start Activity B from A via startActivity. In Activity B, I created a thread, and traverse file system in this thread, after traversing completed, call finish() and to return to

[android-developers] Do I need to buy Google Maps license?

2010-05-20 Thread Samuh
I am embedding a MapView in my application which is used as a canvas to pin point a location. My question is do I need to buy a license if I publish my application as paid app in market? What is my app is free? Thanks. -- You received this message because you are subscribed to the Google

[android-developers] Browser localization issue

2010-05-20 Thread Uander
Hi All , I want to know whether my following observation is a issue on my android or just an existing feature in eclair 2.1 Click Main menu-settings-LanguageText-Dutch open browser application (web Image Local News are there in English) Click on Images Now web Image Local News can be seen

Re: [android-developers] Do I need to buy Google Maps license?

2010-05-20 Thread Carlos Silva
On Thu, May 20, 2010 at 11:31, Samuh samuh.va...@gmail.com wrote: I am embedding a MapView in my application which is used as a canvas to pin point a location. My question is do I need to buy a license if I publish my application as paid app in market? What is my app is free? No, and No.

[android-developers] Re: Locate services offered?

2010-05-20 Thread redders
Android offers two location services: GPS Network (mobile cell). The developer can choose to register to receive location updates for one or both of these. You have raised a question I was wondering about though - does the network location use WiFi to increase accuraccy? I have noticed I

[android-developers] capture outgoing sms in android

2010-05-20 Thread Nandan .
Hii. In android there is a broadcast Receiver for incoming SMS. but in my application i want to capture outgoing SMS through code it is possible in android. There is no any Receiver for outgoing SMS. how can i implement to capture outgoing SMS. if any one have idea plz reply me.. Thank

[android-developers] Re: Android eclair: playing videos

2010-05-20 Thread Darshan
Hi, Can you please provide the details of the solution? Thanks, Darshan On May 19, 12:05 pm, petter havlenap...@gmail.com wrote: nevermind i solved it On May 6, 9:39 am, petter havlenap...@gmail.com wrote: Hi I have compiledandroideclairversion 2.1 on my htc sapphire 32A and

[android-developers] Re: How to find memory leak?

2010-05-20 Thread pacoder
I've been using Eclipse MAT (http://www.eclipse.org/mat/) to look at heap dumps. My phone isn't rooted so I run my app in the emulator then use adb to do a kill -10 which forces a heap dump. I then do an adb pull to grab the file (your logcat will give you the name of the heap dump output file

Re: [android-developers] When Activity is closed, its fields is not release, how to resolve this issue.

2010-05-20 Thread Mark Murphy
In the following scenario, the fields of Activity is not released when the Activity is closed with calling finish(). Class MyClass { } public MyActivity extends Activity {     private MyClass obj;     public void onCreate(xxx)     {        

[android-developers] Re: How to find memory leak?

2010-05-20 Thread Mathias Lin
Yourkit, http://yourkit.com/overview/index.jsp, is another profiler tool that could be used. In sdk2.1, you can also do it on a non-rooted device - you can create a hprov from within the app and write it to sdcard. Debug.dumpHprofData(/sdcard/myapp.hprov); At least in v2.1, possible that this

[android-developers] rounded rectangle for TextView

2010-05-20 Thread Adrian Vintu
Hi all, Does anyone know how to obtain the rounded rectangle effect from this picture? http://developer.android.com/intl/de/resources/articles/images/list_fade_4.png Is it somewhere in samples? Thank you, BR, Adrian Vintu -- You received this message because you are subscribed to the Google

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-20 Thread Kevin Gaudin
Thanks Tobias for using the lib ! All the sources are available on GoogleCode's SVN: http://code.google.com/p/acra/source/checkout. The main help we need now is developers to test the v2 stability with its different notification modes and on different android hardware/ versions so that we can go

[android-developers] how browser decides html size on 2.1

2010-05-20 Thread James Wang
We have one html page whose backgroud is an image(1024px*600px) with no-repeat. We displayed it in Browser rightly on 1.6 HVGA(160) and WVGA(240) emulator and scrollbar displaed on both sides. But we got different result when testing on 2.1 HVGA(160) and WVGA(240) emulator. On 2.1 HVGA(160), the

Re: [android-developers] how to get a onClick() event from a marker int map?

2010-05-20 Thread Mark Murphy
hi all,i want to add a marker to a position int the map ,so i add a image through canvas by overwrite overlay .But i want to get the other activity through clicking the image,who can tell me what can i do ? thanks! Use ItemizedOverlay, and override the onTap() method. See:

[android-developers] Issue with WifiManager.calculateSignalLevel(RSSI, 5)

2010-05-20 Thread draf...@gmail.com
I am trying to use the Wifimanager to calculate the Signal Level of the access points found during a scan. I am using the following method: http://developer.android.com/intl/de/reference/android/net/wifi/WifiManager.html#calculateSignalLevel%28int,%20int%29 But it appears to always return the

[android-developers] Re: rounded rectangle for TextView

2010-05-20 Thread greg
Have you seen Graphics/RoundRects in APIDemos? On May 20, 8:30 am, Adrian Vintu adrianvi...@gmail.com wrote: Hi all, Does anyone know how to obtain the rounded rectangle effect from this picture?http://developer.android.com/intl/de/resources/articles/images/list_f... Is it somewhere in

[android-developers] Screen lock problem in SurfaceView

2010-05-20 Thread Eong
Hi, I need some help on SurfaceView for games. I use a SurfaceView in my game and set a render for it. In the render I use some native call from my native lib to draw the screen using opengl. This game uses landscape mode and I lock the mode in my manifest. But ifI press powerbutton on my

Re: [android-developers] Re: rounded rectangle for TextView

2010-05-20 Thread Adrian Vintu
Nope. I will ckeck it out. Thank you very much :) BR, Adrian Vintu On Thu, May 20, 2010 at 3:06 PM, greg sep...@eduneer.com wrote: Have you seen Graphics/RoundRects in APIDemos? On May 20, 8:30 am, Adrian Vintu adrianvi...@gmail.com wrote: Hi all, Does anyone know how to obtain the

[android-developers] Re: Participate in app promotion experiment

2010-05-20 Thread Maps.Huge.Info (Maps API Guru)
Latest results of the experiment: campaign | impressions | clicks | ctr -- Punching for Health| 1 |125 | 1.25 ArmaBoing |2341 | 36 | 1.54 My College Life Beta

[android-developers] Experience with GoAPK.com

2010-05-20 Thread Jason Van Anden
I received an email from goapk.com - offering to translate my apps for Chinese market. Has anyone here have an experience with this? I am curious about your experience. Thanks, Jason Van Anden http://www.BubbleBeats.com -- You received this message because you are subscribed to the Google

[android-developers] Re: Picassa Like Pictures Album Zoom

2010-05-20 Thread greg
Have you seen the View/Seek Bar sample in API Demos? You may also want to look at ImageView.setImageMatrix(). On May 17, 8:10 am, Tabman tabishfay...@gmail.com wrote: Hi, I want to implement a custom UI component that acts in a similar manner to picassa web albums for zooming in-out of

[android-developers] Re: Avoid restarting background threads on orientation change

2010-05-20 Thread Jeff
Ok, I believe I have made a little progress on this. It looks like I can use onRetainNonConfigurationInstance() to save an instance of my thread objects and then call getLastNonConfigurationInstance() to get them back when the Activity is restarted. This leads me to a new questionwhen do I

[android-developers] Re: Bluetooth socket to non Android device

2010-05-20 Thread Chris
1) I get Failed to connect to SDP server on 00:12:F3:04:80:80: Connection timed out, but if I run sdptool records: $ sdptool records 00:12:F3:04:80:80 sdptool records 00:12:F3:04:80:80 Service Name: SPP Service RecHandle: 0x10001 Service Class ID List: Serial Port (0x1101) Protocol Descriptor

Re: [android-developers] Re: Avoid restarting background threads on orientation change

2010-05-20 Thread Mark Murphy
This leads me to a new questionwhen do I actually destroy the threads then? As soon as their work is done. All else being equal, choose a model where you do not keep your own threads hanging out forever (e.g., use AsyncTask rather than forking your own threads). Part of me is wondering if

Re: [android-developers] Re: Avoid restarting background threads on orientation change

2010-05-20 Thread Jeff Thorn
As always, thanks Mark! I definitely see your point - its better to do short chunks of work in an AsyncTask than creating long running background threads. My app makes a lot of http requests. After the download is complete, it updates a database. I thought it would be better to create a single

[android-developers] Re: How to force Activity to call finalize()?

2010-05-20 Thread Streets Of Boston
Don't rely on finalize() being called (at an even somewhat predictable time). Finalize is called by the garbage collector of every java Object. It may be quite a while before finalize is called by the garbage collector. Instead, implement the onDestroy. On May 20, 3:42 am, Jiang

Re: [android-developers] Petitions to Google

2010-05-20 Thread Leigh McRae
On 5/19/2010 11:49 PM, Xavier Ducrohet wrote: Making petition to make us do something is an absolute waste of time. Filing reasonable feature request (http://b.android.com) with a concise explanation why the feature is needed has a much better chance of success. Contributing is even better!

[android-developers] Re: Functional testing multiple activities (ActivityInstrumentationTestCase2)

2010-05-20 Thread Streets Of Boston
Buehler, anyone? Buehler...? :-) On May 18, 11:33 pm, Streets Of Boston flyingdutc...@gmail.com wrote: Hi, I'm trying to write some functional unit-tests that involve multiple activities (end-to-end testing). I have great trouble to write stable tests, especially when ActivityMonitors are

Re: [android-developers] Petitions to Google

2010-05-20 Thread Romain Guy
The Java language specifications do not include a preprocessor syntax, so we won't. You can use other languages that compile to .class or .dex though. On Thu, May 20, 2010 at 7:12 AM, Leigh McRae leigh.mc...@lonedwarfgames.com wrote: On 5/19/2010 11:49 PM, Xavier Ducrohet wrote: Making

Re: [android-developers] Re: Avoid restarting background threads on orientation change

2010-05-20 Thread Mark Murphy
My app makes a lot of http requests. After the download is complete, it updates a database. I thought it would be better to create a single background thread that does this work and then notifies the UI when its finished. I thought this would be more efficient than opening a network

[android-developers] App causing crash/reboot cycle

2010-05-20 Thread kec6227
So I have 2 reports now of my app causing a crash/reboot cycle the user can't always break from. I cannot reproduce this on my phone, and I am wondering what might be causing something like this? Would running out of memory or something cause this? Because I can't reproduce it, I can't look at the

Re: [android-developers] Petitions to Google

2010-05-20 Thread mike
On 05/20/2010 07:14 AM, Romain Guy wrote: The Java language specifications do not include a preprocessor syntax, so we won't. You can use other languages that compile to .class or .dex though. What I don't understand is why people who want this don't just use /usr/bin/cpp in their build

Re: [android-developers] App causing crash/reboot cycle

2010-05-20 Thread Mark Murphy
So I have 2 reports now of my app causing a crash/reboot cycle the user can't always break from. I cannot reproduce this on my phone, and I am wondering what might be causing something like this? Would running out of memory or something cause this? Because I can't reproduce it, I can't look

Re: [android-developers] Re: Turning off the screen

2010-05-20 Thread mike
On 05/19/2010 07:55 PM, Peter Eastman wrote: After investigating this a bit further, I've determined that the program is still running. For example, if I set a Timer, that keeps getting invoked. It's just SensorEventListeners that don't get invoked when the screen is turned off. That's good

[android-developers] Re: Android 2.1 SQL Server

2010-05-20 Thread Tim
At MobiForms we use the jTDS JDBC driver to support JDBC access to SQL Server from apps developed using our MobiForms Developer. In fact Android supports full JDBC syntax and access to a range of databases. With MobiForms you do not need to learn Java, XML, Eclipse or the Android SDK. Instead

[android-developers] Help!!!! Live streaming (from DSS to android)

2010-05-20 Thread Jez
Does anyone know if the latest 2.1 SDK supports LIVE video streaming playback in Android. My setup is using a video decoder which receives a Live video stream to VLC, which in turn sends this to Darwin Streaming Server, I then open (android emulator) the media player demo on rtsp://server ip/

Re: [android-developers] Petitions to Google

2010-05-20 Thread Leigh McRae
It's my understanding that Android isn't Java compliant so I don't understand this comment. Perhaps I am wrong. I also don't understand what this has to do with the specification anyway as it's a tool issue really.If we are to talk about Java and hence Sun, well they have a preprocessor

Re: [android-developers] Petitions to Google

2010-05-20 Thread Leigh McRae
I hear you Mike. I have done this in the past for stuff like PS2 vu asm code and even with lua. The thing is that the only real choice that I have seen is to use Eclipse for Android if you want to have support to debug. My Eclipse Fu isn't strong by any means so maybe I am wrong. Can you

[android-developers] How soon is isFinishing() triggered?

2010-05-20 Thread Jeremiah Sellars
...or when is the earliest I can detect it? Here's my situation... I've got an OpenGL game in the works. When the activity is ended (however this happens either by Android or user quitting) I'd like like to do some cleanup. I'm already calling a native function to free some memory that was

[android-developers] Pushing up views above soft keyboard

2010-05-20 Thread abhi
hi, I am trying to push up the views in my activity whenever a soft keyboard comes up. I have been partially successful in this, except that certain views remain hidden behind the soft keyboard. My XML looks like the below. I am specifying the last RelativeLayout RL3 containing buttons with the

[android-developers] Re: App causing crash/reboot cycle

2010-05-20 Thread kec6227
There are at least a half-dozen solutions for sending you the logs. Google may be rolling out one now, based on some reports. And there's DroidDrop, Flurry, android-log-collector, plus others that have been reported on this list. For example, I seem to recall somebody just posting on here

Re: [android-developers] Custom ListAdapter questions

2010-05-20 Thread TreKing
On Mon, May 17, 2010 at 4:39 AM, Primal primal...@gmail.com wrote: I have 3 questions I tried registering a context menu for the list view by adding the line after setting the list adapter `registerforContextMenu(getListView())`; But on long-click the menu doesnt get displayed. I cannot

Re: [android-developers] Petitions to Google

2010-05-20 Thread Greg Donald
On Wed, May 19, 2010 at 10:49 PM, Xavier Ducrohet x...@android.com wrote: We will introduce a new build mechanism that will allow you to easily share code and resources across 2+ application projects that will be much better at handling this case. This is great news. Would you care to

[android-developers] help: Multiple broadcast receivers in the same process: Do they all run in the main thread??

2010-05-20 Thread Satya Komatineni
The application fundamentals page at the android site states that By default, all components of the application run in that process and thread Is this true for a broadcast receiver as well? if I have multiple broadcast receivers in a single apk file and do they all run on the main thread one

[android-developers] Re: Pushing up views above soft keyboard

2010-05-20 Thread abhi
I have tried to use android:windowSoftInputMode=stateUnspecified| adjustResize in the activity manifest, but that does not work either. On May 20, 10:32 am, abhi rkabhi1...@gmail.com wrote: hi, I am trying to push up the views in my activity whenever a soft keyboard comes up. I have been

Re: [android-developers] Throwing an event in an Application, handling it in an Activity

2010-05-20 Thread TreKing
On Mon, May 17, 2010 at 11:14 AM, Leigh leigh.herb...@gmail.com wrote: In other environments, I would achieve this by having the Application cause an Event, and have the activities listen for and handle the event. Is this an option? Sure. All of your activities have access to the one

Re: [android-developers] Re: Maintaining the state when changing the orientation

2010-05-20 Thread Alok Kulkarni
Hi guys , thanks for the replys, @Sanjay , i have taken care in case of ArrayAdapter for ListViews I could successfully do save the state of application and also the handlers problem was solved. What i did is that i used a Main class which extends Application, whenever onCreate of my Activity gets

Re: [android-developers] how to get inputstream of an xml file which is placed under /res/xml

2010-05-20 Thread TreKing
On Sun, May 16, 2010 at 9:59 PM, tiany lonelin...@gmail.com wrote: but when the xml file is under /res/xml,how can I do it? Don't think you can. For those files, use getXml() (or something) to get an XmlPullParser instance (I think, I'm going off memory).

[android-developers] Android Programming Class

2010-05-20 Thread joshbeck
Hello everyone: I've been developing a curriculum designed to teach middle school students Android programming this year. Here's an end of the year article that covers it really well. http://linuxclassroom.com Thanks to the dev community. Big support over the last few years! -- You received

[android-developers] Re: USB problem after 2.1 upgrade of HTC Eris

2010-05-20 Thread FrankG
You can check in the Device Manager for the device properties | Details tab the hardware ids. Maybe the Vendor and/or Product ID has changed ? Maybe you have to change the android_winusb.inf ? Good luck ! Frank On 17 Mai, 03:13, vad vad.ad...@gmail.com wrote: Hello, after installing

[android-developers] Re: samsung app store

2010-05-20 Thread Gabriel Simões
. something to think about ... Why would users need another App Store for the same plataform if it doesn´t add anything better than the ones we have already? I´m trying to imagine what will happen if every manufacturer/carrier decides not to include android market on their custom Android OS

[android-developers] Google TV - Developer Device Seeding

2010-05-20 Thread cpick
Hello, I would be interested in any Developer Device Seeding program that Google has with regards to their TV. Chris. -- 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: samsung app store

2010-05-20 Thread Nathan
I'm with you on this. I don't want more fragmentation. Profit is not the only motive, though. They want a market that works on their HDTVs and DVD players. I don't know if they will be running Android, but Google doesn't support running the market on non smartphone devices. Samsung also makes

Re: [android-developers] how to add a lisener to a image which in the overlay

2010-05-20 Thread TreKing
On Thu, May 20, 2010 at 1:39 AM, 徐洪跃 xhyg...@gmail.com wrote: hi.all,i want to add a listner to a image which in the overlay so thata dialog will exists after i click the image int the map, thanks ! Start by looking at the onTap() methods in the Maps API documentation.

[android-developers] Protect against broken intent - How ?

2010-05-20 Thread Anthoni
Hello, In my application I am going to be allowing the ability to call and start other activities, just like the Android spec allows. To this extent I use the following code :- Intent myIntent = new Intent(); myIntent.setClassName(IntentPackage, Fully Qualified Intent); Now I found out quite by

Re: [android-developers] Problem while passing aray list to next activity in widget application

2010-05-20 Thread TreKing
On Thu, May 20, 2010 at 2:08 AM, sunita sunita.mahadevkhil...@wipro.comwrote: Please give me suggestions for this problem. Post the relevant code that's not working. On Thu, May 20, 2010 at 2:18 AM, Tommy droi...@gmail.com wrote: Why not save the object to a global variable and access it in

Re: [android-developers] Re: Installation date of an application in a device

2010-05-20 Thread TreKing
On Thu, May 20, 2010 at 3:50 AM, Isidoro Castell salud.rebel...@gmail.comwrote: Anyone knows how I can get this information or how I can access to this directory (/data/app/)? I really doubt you can get this info. Sorry.

[android-developers] Re: Protect against broken intent - How ?

2010-05-20 Thread Anthoni
Now I found out quite by accident if the intent fails to be found, I accidentally misspelled my intent, it totally crashes my application not only that nullifies my application object as well (I have a class that extends Application). I've tried to trap this but it still always crashes. OK

[android-developers] Re: Android Dev Phone with 2.x?

2010-05-20 Thread Tomáš Hubálek
Once I saw today's IO 2010 keynote, I think this question starts even more important. Currently available Dev Phones are totally outdated. Tom On 14 kvě, 15:36, Tomáš Hubálek tom.huba...@gmail.com wrote: Hello, I'm owner of ADP1 (1.6 device) but majority of my users have 2.x version. Does

Re: [android-developers] Petitions to Google

2010-05-20 Thread mike
On 05/20/2010 08:07 AM, Leigh McRae wrote: I hear you Mike. I have done this in the past for stuff like PS2 vu asm code and even with lua. The thing is that the only real choice that I have seen is to use Eclipse for Android if you want to have support to debug. My Eclipse Fu isn't strong by

Re: [android-developers] Petitions to Google

2010-05-20 Thread Xavier Ducrohet
On Thu, May 20, 2010 at 7:12 AM, Leigh McRae leigh.mc...@lonedwarfgames.com wrote: First the OP didn't talk about using a preprocessor for xml.  I would agree that that would be odd and there are better tools for that.  Still a preprocessor could be used to conditionally include a resource by

Re: [android-developers] Petitions to Google

2010-05-20 Thread Xavier Ducrohet
We just released it this morning with the 2.2 SDK. On Thu, May 20, 2010 at 8:42 AM, Greg Donald gdon...@gmail.com wrote: On Wed, May 19, 2010 at 10:49 PM, Xavier Ducrohet x...@android.com wrote: We will introduce a new build mechanism that will allow you to easily share code and resources

[android-developers] Where can I find the Android Cloud to Device Messaging API?

2010-05-20 Thread rtreffer
So Android 2.2 is out, we've got a new SDK, and a promising new feature Android Cloud to Device Messaging. But I just can't find any traces of this in the API diff. Did anyone find an API? Or some further docs? Thanks in advance, Rene Treffer -- You received this message because you are

[android-developers] Multitouch / Pinch To Zoom in Android 2.2?

2010-05-20 Thread Mariano Kamp
Hi. In Android 2.1 update 1 multitouch was silently added. Unfortunately it is only available when also the zoom picker is **active**?! I am sure there are cases where that setting makes sense, but it was not possible to separately turn on one or the other. I thought they didn't want to change

Re: [android-developers] Where can I find the Android Cloud to Device Messaging API?

2010-05-20 Thread Michael Elsdörfer
It's part of the Google-addons: http://code.google.com/android/c2dm/index.html On 05/20/2010 08:53 PM, rtreffer wrote: So Android 2.2 is out, we've got a new SDK, and a promising new feature Android Cloud to Device Messaging. But I just can't find any traces of this in the API diff. Did

Re: [android-developers] Google TV - Developer Device Seeding

2010-05-20 Thread TreKing
On Thu, May 20, 2010 at 12:05 PM, cpick cp...@vmenu.com wrote: Hello, I would be interested in any Developer Device Seeding program that Google has with regards to their TV. Chris. OK -

Re: [android-developers] Petitions to Google

2010-05-20 Thread Greg Donald
On Thu, May 20, 2010 at 1:16 PM, Xavier Ducrohet x...@android.com wrote: We just released it this morning with the 2.2 SDK. And here are the docs if anyone was wondering: http://developer.android.com/intl/fr/guide/developing/eclipse-adt.html#libraryProject -- Greg Donald destiney.com |

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-20 Thread Justin Edwards
I have also added the logging into my application. Within 10 minutes I had my first bug report.. :( (Even before I got the update installed on my device.) I had no problems getting everything added into my application again thanks to your HowTo. (Only issue I had was uploading the csv file...

[android-developers] Android Market Developer Console Bugs feature

2010-05-20 Thread Zanshin
The new bugs feature is a great move forward to empower devs and users both, kudos Google. However, the reports don't tell me which version of my app the report is from, which is critical for me to properly triage. Is there any feedback channel to Google other than this group we could use to get

Re: [android-developers] Android Market Developer Console Bugs feature

2010-05-20 Thread TreKing
On Thu, May 20, 2010 at 2:27 PM, Zanshin zanshin...@gmail.com wrote: However, the reports don't tell me which version of my app the report is from, which is critical for me to properly triage. Yes it does - expand the bug report and the section that says Stack Trace (assuming there is one),

[android-developers] javascript on android

2010-05-20 Thread siddarth
hi. i am suhas. I am new to android i am actually trying to load javascript onto the webview, i made use of both webview.loadUrl(); and webview.loadData(); but i does not work for the below script plz. help me with this. script type=text/javascript window.googleAfmcRequest = {

[android-developers] Re: Issue with setBuiltInZoomControls on HTC Incredible

2010-05-20 Thread Stormtap Studios
I'm noticing a trend here. We too are experiencing issues with WebViews on the HTC Incredible. We're having problems with the content being strangely zoomed in when it loads up. We're also experiencing a strange behaviour where when the user scrolls the view a gray or black square grows from

[android-developers] Re: Android Market Developer Console Bugs feature

2010-05-20 Thread Zanshin
You're correct, but that's only for crashes. ANRs don't show version in the report. Again, date and version # are critical for developers to have with reports. On May 20, 12:32 pm, TreKing treking...@gmail.com wrote: On Thu, May 20, 2010 at 2:27 PM, Zanshin zanshin...@gmail.com wrote:

Re: [android-developers] Re: Android Market Developer Console Bugs feature

2010-05-20 Thread TreKing
On Thu, May 20, 2010 at 3:17 PM, Zanshin zanshin...@gmail.com wrote: ANRs don't show version in the report. I see: This report was sent in by a pre-Froyo client, which did not include an ANR stack trace. So it looks like it requires the device to be running the new platform to support it for

[android-developers] Re: Android Market Developer Console Bugs feature

2010-05-20 Thread Mr Pants
Ironically, I just get Server error. Try again when I click on the bugs link :( Teething problems perhaps? On May 20, 9:27 pm, TreKing treking...@gmail.com wrote: On Thu, May 20, 2010 at 3:17 PM, Zanshin zanshin...@gmail.com wrote:  ANRs don't show version in the report. I see: This report

Re: [android-developers] Re: Avoid restarting background threads on orientation change

2010-05-20 Thread Jeff Thorn
I took your advice and refactored my code to replace any long living background threads with AsyncTasks. Wow!!! I cannot begin to tell you how much it simplified my code. Thank you so much for the very valuable advice. On Thu, May 20, 2010 at 10:17 AM, Mark Murphy mmur...@commonsware.comwrote:

  1   2   >