[android-developers] choiceMode & focusableInTouchMode & focusable

2009-02-17 Thread gsmd
The context: I want to have a ListView that wouldn't receive focus (e.g. won't highlight row when user touches it). Yet each row widget has it's own OnClickListener. Here's what I specify in layout xml: -- android:choiceMode="none" android:focusableInTouchMode="false" android:focusable="false" --

[android-developers] Re: Launching activity within an apk file thorough intent

2009-02-17 Thread bubble.vnhan
hihi! behavior of design is no problem, but just only that, you seted incorrect Intent_Flag. you should set Intent_Flag as below: intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); if you set it, you want behavior that is correct. V.Nh

[android-developers] setChoiceMode(), getSelectedItemPosition() & inconsistent behaviour

2009-02-17 Thread gsmd
Got an activity that extends ListActivity. The list is backed up by a custom adapter that extends BaseAdapter. -- getListView().setFocusable(true); getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE); -- I do a simple (getSelectedItemPosition() == == ListView.INVALID_POSITION) check in onPrep

[android-developers] Help! Market ratings for my app have disappeared!

2009-02-17 Thread Teo
Has this happened to anyone else? I now have a 0 star rating with 0 people having rated it... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-de

[android-developers] Re: Accelerometer frequency

2009-02-17 Thread gjs
Hi, Try logging the data received with timestamps ( in memory ) for android.hardware.SensorListener.onSensorChanged(int sensor, float[] values) and you'll soon work out the Frequency, I have found accelerometer updates being received at approximately 30~40ms intervals on a G1 eg: 1227266554492 2

[android-developers] Re: How can I reuse layout.xml?

2009-02-17 Thread for android
On Wed, Feb 18, 2009 at 12:14 PM, ying lcs wrote: > > Hi, > > In my activity, I have the following in my layout.xml file. > Can you please tell me how can I make it 'resuable'? For example, I > what to create a library so that I can insert a component and it > creates 4 buttons for me using li

[android-developers] Re: A thread useful for whole community - Reply with all working OpenGL ES Extension functions

2009-02-17 Thread suhas gavas
hi all, I have used some of the GL11 functions in my code and it has improved my fps and that is VBO(vertex buffer object) Regards, Suhas On 2/18/09, quakeboy wrote: > > I hope this is going to be helpful for the whole community who work on > OpenGL ES in Android. > Please reply with the exten

[android-developers] How can I reuse layout.xml?

2009-02-17 Thread ying lcs
Hi, In my activity, I have the following in my layout.xml file. Can you please tell me how can I make it 'resuable'? For example, I what to create a library so that I can insert a component and it creates 4 buttons for me using linear layout? How can I combine all that into a 'view' or a widget?

[android-developers] Re: A thread useful for whole community - Reply with all working OpenGL ES Extension functions

2009-02-17 Thread suhas
hi all, I have used some of the GL11 functions in my code and it has improved my fps and that is VBO(vertex buffer object) On Feb 18, 11:16 am, quakeboy wrote: > I hope this is going to be helpful for the whole community who work on > OpenGL ES in Android. > Please reply with the extension fun

[android-developers] Re: Integrating my external library

2009-02-17 Thread Dave Sparks
This topic has been covered many times. See this thread for one example: http://groups.google.com/group/android-developers/browse_thread/thread/d68364976e5d98ff/733eea4a1195527e?lnk=gst&q=native+support#733eea4a1195527e On Feb 17, 10:09 pm, Android Groups wrote: > I'm also facing the same issu

[android-developers] Re: 2d background image on a 3d OpenGL game

2009-02-17 Thread quakeboy
@suhas thanks a lot for sharing your information I request you to please take part in this thread to help the community http://groups.google.com/group/android-developers/browse_thread/thread/1d94cd6cc4554e8e On Feb 18, 10:53 am, suhas gavas wrote: > Hi, > I m rendering 3 models > > model 1 : >

[android-developers] A thread useful for whole community - Reply with all working OpenGL ES Extension functions

2009-02-17 Thread quakeboy
I hope this is going to be helpful for the whole community who work on OpenGL ES in Android. Please reply with the extension functions you have used and got it working apart from OpenGL ES 1.0 functions. Post the functions from EGL11, GL11, GL11Ext, GL11Extensions Here is my list of working GL11

[android-developers] Re: Integrating my external library

2009-02-17 Thread Android Groups
I'm also facing the same issue and would get some help from forum On Feb 15, 7:21 pm, "Ashutosh Agrawal" wrote: > Hi, > > Though I have gone through the available documentation and the source code, > I am somewhat ambiguous about the approach to follow for integrating my > external library

[android-developers] Re: opengl es texture created from bitmap is all white?

2009-02-17 Thread Rye
I've tried the mode as well, but the mode was the one used in the sprite text example. On Feb 18, 12:05 am, Romain Guy wrote: > Why are you using the ARGB_ mode? > > > > On Tue, Feb 17, 2009 at 10:03 PM, Rye wrote: > > > All the textures I create from my resource files are fine, b

[android-developers] Re: Setting margins for an imageview using code

2009-02-17 Thread sagar.indianic
Hi greg..Thanks for the reply.. Its working fine... But I also have another doubt.. I m using a relative layout and I want to set alignParentBottom to true.. We have a constructor like -- RelativeLayout.LayoutParams(Context c, AttributeSet attrs) --... Can u please tell me how to use attribute set

[android-developers] Re: opengl es texture created from bitmap is all white?

2009-02-17 Thread Romain Guy
Why are you using the ARGB_ mode? On Tue, Feb 17, 2009 at 10:03 PM, Rye wrote: > > All the textures I create from my resource files are fine, but when I > create a texture in the following way... > > > > mOverlay = Bitmap.createBitmap((int)mWidth, (int)mHeight, > Bitmap.Config.ARGB_); >

[android-developers] opengl es texture created from bitmap is all white?

2009-02-17 Thread Rye
All the textures I create from my resource files are fine, but when I create a texture in the following way... mOverlay = Bitmap.createBitmap((int)mWidth, (int)mHeight, Bitmap.Config.ARGB_); mOverlay.eraseColor(0); mOverlayCanvas = new Canvas(mOverlay); ... Canvas c = mOverlayCanvas; c.dr

[android-developers] Re: 2d background image on a 3d OpenGL game

2009-02-17 Thread suhas gavas
Hi, I m rendering 3 models model 1 : vertices = 309 Triangles : 232 grp = 19 material 9 joints 0 model 2 vertices = 258 Triangles : 188 grp = 2 material 2 joints 0 model 3 vertices = 64 Triangles : 80 grp = 1 material 1 joints 0 And i m rendering model number 2 twice and gett

[android-developers] Re: Can Dev Phone bought in US be used in India?

2009-02-17 Thread dillirao malipeddi
Sure you can use the Dev phone 1 (Google) in india Currently i am using Dev phone1 in INDIA -- It works fine On Wed, Feb 18, 2009 at 1:04 AM, swamytk wrote: > > I am resident of India. But right now i am in US. I am planning to buy > a Google Dev Phone 1. I will be using it in India once i am ba

[android-developers] Re: Thread stopping

2009-02-17 Thread Romain Guy
In your application's onPause/onStop/onDestroy simply use Handle.removeCallbacks(Runnable). On Tue, Feb 17, 2009 at 9:46 PM, Dilli wrote: > > Hi all, > > > I am developing a simple application with thread concept > > problem: > > In one thread i write > > { > Thread.sleep(1000

[android-developers] Thread stopping

2009-02-17 Thread Dilli
Hi all, I am developing a simple application with thread concept problem: In one thread i write { Thread.sleep(1) //10 sec sleep m_handler.post(my_runnable); // to post to run another runnable } before the thread wake up ( <10 sec) i stopped

[android-developers] Re: Infinite Versions

2009-02-17 Thread Shane Isbell
On Tue, Feb 17, 2009 at 7:33 PM, Java Developer wrote: > > I'm having a bit of trouble understanding the Market T&Cs. > > It appears once a user purchases my application they are entitled to > upgrade to every future version. For example, if a user buys version > 1.1 this week they are entitled to

[android-developers] Re: Installing a signed release apk over USB

2009-02-17 Thread kayyo...@rooftophq.com
Make sure adb knows your device is connected: adb devices should return a line with your device serial number on it like: HA861LC2521F device Then run: adb -d install That's it. On Jan 5, 6:54 pm, ivan wrote: > How does one upload a signed apk file to their G1 (using the USB) for > the f

[android-developers] Missing a Proximity Listener

2009-02-17 Thread cedric.bois...@gmail.com
Looking at Android code, I've seen that SENSOR_PROXIMITY is managed as a sensor, but there is no current Android Framework managing events coming a proximity sensor. We can see for example that SENSOR_ACCELEROMETER is managed by class OrientationListener which will provide to Android applications

[android-developers] Can Dev Phone bought in US be used in India?

2009-02-17 Thread swamytk
I am resident of India. But right now i am in US. I am planning to buy a Google Dev Phone 1. I will be using it in India once i am back to India after 2 months. If I buy it in US, can I use it in India? My suspect is on 3G band currently used in India (BSNL/MTNL) or soon to be used (by airtel / v

[android-developers] range of G1 orientation sensor's values (pitch and roll)

2009-02-17 Thread egg
Hi. I checked the API documentation for SensorListener --- SENSOR_ORIENTATION, SENSOR_ORIENTATION_RAW: All values are angles in degrees. values[0]: Azimuth, rotation around the Z axis (0<=azimuth<360). 0 = North, 90 = East, 180 = South, 270 = West values[1]: Pitch, rotation around X axis (-180<=p

[android-developers] Re: How to use check box in list view?

2009-02-17 Thread dileep singh
Thanks a lot.I will try the aboce code. On Tue, Feb 17, 2009 at 10:24 PM, Kirk wrote: > > Hi Dileep, > > The following code will loop through all items in the ListView 'lv' > and, if the checkbox is checked, will extract the email at that > position. It could take a bit longer if the list is lon

[android-developers] Re: Are paid apps coming tomorrow?

2009-02-17 Thread Alowishus
I'm curious as well, any info? On Feb 17, 12:00 pm, g1bb wrote: > Is there a particular time of day that they'll start showing up? > > Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] Re: How to load image (background) on layout

2009-02-17 Thread dillirao malipeddi
in you layout properties set the background image 1) place image you want in drawable folder 2) in layout properties set that image as background image On Tue, Feb 17, 2009 at 4:35 PM, meouui wrote: > > I want to load image - background - on layout. I use eclipse tool to > develop application.

[android-developers] Re: failed to install applications on G1 through USB

2009-02-17 Thread dillirao malipeddi
did you install the USB driver for the g1 mobile on your system ? If you installed the USB driver (come with SDK - usb_driver ) then it identifies your mobile.. connect your mobile to PC and it will ask for drivers then browse the usb_driver which is in SDK directory and it will install the drive

[android-developers] Re: Problem in setting empty views in a list

2009-02-17 Thread for android
any help? On Tue, Feb 17, 2009 at 1:59 PM, for android wrote: > I tried to set an empty view by the following code : > > LayoutInflater layoutInflater = this.getLayoutInflater(); > View emptyView = (View) layoutInflater.inflate(R.layout.empty_view, > null); > getL

[android-developers] how to share or pass data across two projects

2009-02-17 Thread Android
Hi, Has any one aware of how to share or pass data from one projects to another. I have one Activity in Proj #1 and wants to pass data to a Service in Proj #2. My Proj #2 has provided few interfaces to Proj #2 using AIDL. -Kumar --~--~-~--~~~---~--~~ You received

[android-developers] Re: 2d background image on a 3d OpenGL game

2009-02-17 Thread quakeboy
lol... you guys are talking about 1000 faces !! I am struggling to achieve 30 fps with 12 - 16 triangles !! On Feb 17, 9:10 pm, fcalzada wrote: > Hi, > > you said that with game logic you're getting 45 fps !? > what is the size of your ms3d object (nb of vertex and faces ?) > > My scene include

[android-developers] Re: Scrollview scrolling

2009-02-17 Thread sagar.indianic
Hi..thanks for the reply..But can u suggest me a solution for my problem?? ..how to get the exact amount of scroll ?? On Feb 17, 10:58 pm, "Fred Grott(shareme)" wrote: > That is a nice trick putting webview in scrollview you should probably > put up a wiki article up somewhere when you have time

[android-developers] Re: How to force MediaStore to rescan the SD card

2009-02-17 Thread Dave Sparks
I'm not sure about the process of removing a file from the database. I suggest looking at the Music Player source - it has an option to delete files from the SD card. Under what circumstances would files be deleted without mounting and re-mounting the SD card? That sounds like a poorly behaved ap

[android-developers] Re: GPS LocationManager Problem

2009-02-17 Thread Sohail
I can't find that permission in the official documentation. Isn't this deprecated? Secondly, I'm using the emulator. I've tried both using the DDMS and telnet (geo fix) to send the coordinates. Both with no luck. I read somewhere that this works on windows. I'm using ubuntu (if that matters.) (J

[android-developers] Infinite Versions

2009-02-17 Thread Java Developer
I'm having a bit of trouble understanding the Market T&Cs. It appears once a user purchases my application they are entitled to upgrade to every future version. For example, if a user buys version 1.1 this week they are entitled to upgrade to version 2.0 next year. Seems counterintuitive to norma

[android-developers] Re: From Demo to Paid Unlocked Version

2009-02-17 Thread Shane Isbell
On Tue, Feb 17, 2009 at 6:38 PM, tberthel wrote: > > Did Google people stop answering questions? No, they didn't stop. They just never started. Shane --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Develope

[android-developers] Re: Charging for upgrading from free to paid version with new features

2009-02-17 Thread tberthel
On Feb 17, 6:09 pm, "David McLaughlin (Android Advocate)" wrote: > Hi, > > You may not add a price to an existing app; instead, you will need to > upload a new application version and add a price to that. Section 3.3 > states that people who download a free app can not be charged at a > later d

[android-developers] Re: From Demo to Paid Unlocked Version

2009-02-17 Thread tberthel
Did Google people stop answering questions? On Feb 13, 7:25 pm, tberthel wrote: > I have 5 games on the market that have license servers.  My free games > are the same as the full versions except one is locked and the other > is not (More levels, features, and such).  I would like to have the >

[android-developers] Re:

2009-02-17 Thread tberthel
This is really important for updates. Can you please answer this question. On Feb 15, 11:47 pm, tberthel wrote: > The seems to missing now. > > It was available before, but now it is gone. > > Where do I get this Identifier now? --~--~-~--~~~---~--~~ You receive

[android-developers] Re: How to force MediaStore to rescan the SD card

2009-02-17 Thread info.sktechnol...@gmail.com
Thanks, this solves my first problem. Now what if media files are deleted? What if I do not know which ones have been deleted? Is there a way to have it rescan the entire SD card in the way it must do if the card has been removed and reinserted? On Feb 14, 2:01 pm, Dave Sparks wrote: > You want

[android-developers] Android to develop vi deo series - Activity(Android开发视频系列--Activ ity)

2009-02-17 Thread SinFrancis
(EN) The following is a video tutorial Android development master and the video download Address: Course Master: http://androidos.cc/bbs/viewthread.php?tid=685&extra=page%3D1 Layout: http://androidos.cc/bbs/viewthread.php?tid=686&extra=page%3D1 Activity: http://androidos.cc/bbs/viewthread.php

[android-developers] Re: RC33 Network Problem

2009-02-17 Thread Gil
Can anyone from Google comment on this matter? On Feb 17, 11:42 am, Gil wrote: > I did further testing and I was wrong about one thing: the disconnect > is not detected at all (not even after 5 minutes as I said initially). > The reason I though that the disconnection was detected after 5 min. >

[android-developers] Re: ListView and focusing

2009-02-17 Thread Selmi
i found what is problem in layout which is used by list item i have several controls. for simplicity i narrowed it down to checkbox and textview i want to do such thing that if you touch checkbox then one action happens, if you touch something else (textview in my case) then something else happe

[android-developers] Re: webView in a loop

2009-02-17 Thread Mark Murphy
Mak wrote: > Hi. > I'd like to build an application that loads different urls in a > webview. > I prefered the webview cause that gives the chance of deleting cache > and > things like that. > But loading an URL in a loop has the effect that everything but the > webView > is executed, till the end

[android-developers] Changing background style of MenuItem

2009-02-17 Thread Noonien Soong
I'd like to change the background drawable for the Menu's MenuItems in my activity. I simply want a image different from the standard ones that you can find in the sdk with the filename: menuitem_background_pressed.png etc... So what I did Is I took the following file from deep inside the / too

[android-developers] webView in a loop

2009-02-17 Thread Mak
Hi. I'd like to build an application that loads different urls in a webview. I prefered the webview cause that gives the chance of deleting cache and things like that. But loading an URL in a loop has the effect that everything but the webView is executed, till the end of the loop. for(int i = 0;

[android-developers] How to find a busy call

2009-02-17 Thread Mak
Hi. I'm developing an application that helps getting an connection with busy phoners. My application should try to call a number and if the number is busy it repeats after 30 seconds till the number is accessible. The problem is, that i don't get a callState like "number is busy". i don't know the

[android-developers] Re: Charging for upgrading from free to paid version with new features

2009-02-17 Thread David McLaughlin (Android Advocate)
Hi, You may not add a price to an existing app; instead, you will need to upload a new application version and add a price to that. Section 3.3 states that people who download a free app can not be charged at a later date for what they have already downloaded. For example, they can't be charged a

[android-developers] telnet service on android

2009-02-17 Thread Ravi Ramachandra
Hi, Is there a way to run inetd or xinetd daemons and connect to android via telnet? Is even xinetd allowed on android kernel. regards, Ravi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Re: Show dialog on creation - question?

2009-02-17 Thread Dianne Hackborn
Dialogs are not blocking. You can't stop things from continuing execution while displaying the dialog. On Fri, Feb 13, 2009 at 3:31 PM, EvgenyV wrote: > > Hi! > I'm trying to show dialog OK/Cancel and then continue construction > after user closed the dialog. > Unfortunately the dialog get visi

[android-developers] Re: Show dialog on creation - question?

2009-02-17 Thread Evgeny V
Yes, I know. I actually did it and don't like it. What about incapsulation? I mean in this case "parent" class will keep and analize some specifed info about its "child". Thanks, Evgeny On Mon, Feb 16, 2009 at 3:18 PM, Stoyan Damov wrote: > > How about you show the dialog *before* you start t

[android-developers] Vodafone HTC Magic skin now available for Android Emulator!

2009-02-17 Thread Tea Vui Huang
Vodafone HTC Magic skin now available for Android Emulator! http://teavuihuang.com/android To install, download and unzip "HVGA-P-HTCMagic.zip" to the Android skin directory, e.g. "C:\android-sdk-windows-0.9_beta\tools\lib\images \skins". To run the Android emulator with this HTC skin, enter this

[android-developers] WebView weirdness...

2009-02-17 Thread Marc
I notice that if I "reuse" a WebVew (i.e. load another URL into it), the result is that the content starts out "scrolled" in many cases (i.e. I'd have to fling or drag to actually see the top of the content). This is not remedied by clearView() or clearHistory(). Any ideas? TIA Marc --~--~---

[android-developers] Re: GWT application in Android

2009-02-17 Thread Mark Murphy
ANDREA P wrote: > How to develop a Gwt applications in Android ??? GWT applications run on a Web server. So, you create the GWT application like you would for a desktop browser, and test it using the browser on an Android device or emulator (from the SDK). There have been a few reports of issues

[android-developers] GWT application in Android

2009-02-17 Thread ANDREA P
How to develop a Gwt applications in Android ??? 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@googlegroups.com To unsubscr

[android-developers] Beta testing of applications

2009-02-17 Thread Mads
I am not really comfortable releasing an app into the wild, which hasn't been tested properly, so I was wondering if anyone knows of a community or site, which has a section for beta testing of Android applications. I am looking for some feedback and discovery of any potential problems (force clo

[android-developers] Re: Guys from development team

2009-02-17 Thread Jean-Baptiste Queru
It'd be great if you could file a report at http://b.android.com/ with a URL pointing to the documentation where the issue shows up. Thanks, JBQ On Tue, Feb 17, 2009 at 2:30 PM, ATrubka wrote: > > I don't mean to be rude, but when you have a chance please rename > this: > LabelAndIconIndicatorS

[android-developers] Guys from development team

2009-02-17 Thread ATrubka
I don't mean to be rude, but when you have a chance please rename this: LabelAndIconIndicatorStategy to this: LabelAndIconIndicatorStrategy :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group

[android-developers] Re: How do you pass variables between classes?

2009-02-17 Thread Ivan Soto
Intent in = new Intent(getApplicationContext(), Another.class); in.putExtra("extra", str); Hope it helps. That's what I do. On Tue, Feb 17, 2009 at 2:19 PM, deenybird wrote: > > What intents do I use to pass a variable to another class? And also > which intent do I use to receive

[android-developers] Re: Send SMS to Email

2009-02-17 Thread Noam
Ok. 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@googlegroups.com To unsubscribe from this group, send email to android-dev

[android-developers] How do you pass variables between classes?

2009-02-17 Thread deenybird
What intents do I use to pass a variable to another class? And also which intent do I use to receive it? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] Re: Need Official HOW-TO: Upgrade from Original ADP1 firmware to RC33

2009-02-17 Thread JLMG
Thanks so much for your quick reply! I'll go back to working with 1.1_r2 until I hear more announcements. I hope it's not long! JLMG On Feb 17, 7:51 am, Jean-Baptiste Queru wrote: > We're working on having an official 1.1 system image available for the ADP1. > > It will not be PLAT-RC33, whic

[android-developers] Gwt on Android

2009-02-17 Thread ANDREA P
Can I create a GWT application on 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

[android-developers] Re: GPS LocationManager Problem

2009-02-17 Thread ndefo arnauld
Hi, > i am a student and i have a project with android which need to detect the > coordinate GPS.But during 2 months,i tried to develop any code and nothing > did not work. > when i run this code below ,i have always NO LOCATION.This means that > emulator android dont receive the coordinate from D

[android-developers] Re: Activity manager information

2009-02-17 Thread Dianne Hackborn
You can use "adb shell dumpsys activity" to get a snapshot of its state and see how it changes, if you want. On Mon, Feb 16, 2009 at 4:09 PM, Sandreas wrote: > > Hi all, > > I have been practicing with android for a while and read a few books > but there is something I can not find anywhere even

[android-developers] Charging for upgrading from free to paid version with new features

2009-02-17 Thread Jay-andro
I have a free app on the Market. With paid support finally arriving, I want to be able to charge for my app. I have readied a new version that includes new features. Can I publish this as a version 2.0 and charge for it including to existing users? http://market.android.com/support/bin/answer.py?

[android-developers] Charding existing user for upgrades

2009-02-17 Thread Jay-andro
I have a free app on the Market. With paid support finally arriving, I want to be able to charge for my app. I have readied a new version that includes new features. Can I publish this as a version 2.0 and charge for it including to existing users? http://market.android.com/support/bin/answer.py?

[android-developers] Re: Android Market broken? Can't see the new release of my app in the Android Market?!

2009-02-17 Thread kolby
Thanks Jon, Michael On Feb 17, 2:54 pm, Jon Colverson wrote: > On Feb 17, 6:06 pm, kolby wrote: > > > Is there a discussion group for market related problems? > > http://www.google.com/support/forum/p/Android+Market/thread?tid=38bb8... > > -- > Jon --~--~-~--~~~---~

[android-developers] Re: Market Place not updating downloads and active users

2009-02-17 Thread noblemaster
Same here. Total and active installs is still at 0 on http://market.android.com/publish/Home (over 36h). There should be plenty of install etc. showing. On Feb 17, 3:10 am, wayne mcfadden- Red Droid wrote: > I have an application published in marketplace and its not updating > the active users/n

[android-developers] Re: Android Market broken? Can't see the new release of my app in the Android Market?!

2009-02-17 Thread Jon Colverson
On Feb 17, 6:06 pm, kolby wrote: > Is there a discussion group for market related problems? http://www.google.com/support/forum/p/Android+Market/thread?tid=38bb8135ba96af2e&hl=en -- Jon --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[android-developers] Re: MediaPlayer with stream over network

2009-02-17 Thread whataboutbob
I was mistaken in where the error was occurring. The next line was: mp.prepareAsync(); and this is actually where it was failing with the Error (-1, 0). I changed it to mp.prepare() and caught an IOException that said "Prepare failed". As I mentioned below, the server side starts sending the

[android-developers] Access 2G networks only from SDK?

2009-02-17 Thread Marc
Is there a way to access the "2G Networks" system preference from an API? TIA Marc --~--~-~--~~~---~--~~ 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@g

[android-developers] Re: RC33 Network Problem

2009-02-17 Thread Gil
I did further testing and I was wrong about one thing: the disconnect is not detected at all (not even after 5 minutes as I said initially). The reason I though that the disconnection was detected after 5 min. is because the W-Fi was going to sleep. If I keep Wi-Fi alive by not allowing the phone

[android-developers] Re: RC33 Network Problem

2009-02-17 Thread Gil
Unfortunately, watching the network state will not always work because it does not account for end-to-end TCP connectivity. The server may crash or its Internet connection may go down and you won't know about it. On Feb 17, 10:05 am, Guillaume Perrot wrote: > Yes it's exactly what happens since

[android-developers] Are paid apps coming tomorrow?

2009-02-17 Thread g1bb
Is there a particular time of day that they'll start showing up? 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@googlegroups

[android-developers] Re: How to retrieve current keyboard configuration (without configuration changes)?

2009-02-17 Thread blindfold
Awesome, thank you Dianne! That works well. (I got lost in doing a Configuration config = new Configuration(); config.setToDefaults(); and then not finding how to get the actual keyboard state into it.) Regards On Feb 16, 7:38 pm, Dianne Hackborn wrote: > getResources().getConfiguration(). > >

[android-developers] Re: Problems converting Base64 byte arrray to String.

2009-02-17 Thread fadden
On Feb 16, 1:16 am, sukumar wrote: > Im trying to convert a byte array which is in Base64 format to String > as below. Data was not assigned properly to the String. Do I need to > pass the encoding type while creating the new String?. Please let me > know the problem. Thanks. > >         String x

[android-developers] Re: Any reason for not supporting capital letters in image file names of aapt tool

2009-02-17 Thread fadden
On Feb 17, 3:02 am, Raja Nagendra Kumar wrote: > We understand aapt has support only for small and numbers. Any reason > for not supporting capital letters.. in future could we expect support > for the same.. Are "tejasoftSplash.png" and "Tejasoftsplash.png" the same file or different files? Th

[android-developers] Re: DDMS does not list processes

2009-02-17 Thread fadden
On Feb 15, 8:17 am, Rye wrote: >[...] I shut down eclipse and booted up DDMS, and it finds my > device, but lists no processes running (no matter what I run). Did you declare your application "debuggable" in the manifest? This doesn't matter on the emulator, but does on the device. http://code

[android-developers] Re: GPS LocationManager Problem

2009-02-17 Thread Timo Bruck
Have you also added permissions for android.permission.ACCESS_LOCATION? I believe you need both. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android

[android-developers] Re: failed to install applications on G1 through USB

2009-02-17 Thread Developer
On Feb 17, 12:49 am, dillirao malipeddi wrote: > There may be your previous application exist in the device > > search by > > adb ls /data/app > > it will list all the applications installed in  your device > > Try to uninstall by using command > > adb uninstall > > if problem exists then try t

[android-developers] Re: Android Market broken? Can't see the new release of my app in the Android Market?!

2009-02-17 Thread kolby
They didn't say they moved it to alpha when the market was no longer beta ;) I can't change the description of my app. It keeps reverting back. Hello? Ggle? Anybody home? Is there a discussion group for market related problems? Michael --~--~-~--~~~---~--~~

[android-developers] Re: RC33 Network Problem

2009-02-17 Thread Guillaume Perrot
Yes it's exactly what happens since RC33. Kinda annoying. I have to close sockets in a separate thread when I receive a connectivity event indicating the network is down or we switched network. This thread becomes zombie most of the time because the socket refuses to close (deadlock with a nativer

[android-developers] Re: Scrollview scrolling

2009-02-17 Thread Fred Grott(shareme)
That is a nice trick putting webview in scrollview you should probably put up a wiki article up somewhere when you have time about it.. On Feb 17, 8:01 am, "sagar.indianic" wrote: > Hello... > > I have a webview in a scrollview... webview displays my text.. I have > a searching feature also. I

[android-developers] Re: RC33 Network Problem

2009-02-17 Thread Gil
What is disturbing is that event if you try to send data on a socket that is not actually connected (according to the situation I outlined initially) the socket does not throw an IOException. It simply thinks it is still connected. On Feb 17, 7:21 am, Guillaume Perrot wrote: > I had the same pro

[android-developers] Re: How to refresh ListView?

2009-02-17 Thread Marco Nelissen
This should happen automatically if you use the ArrayAdapter's add/insert/remove methods to modify the data set. On Mon, Feb 16, 2009 at 1:44 PM, Jiri wrote: > > Hello, > > I'm facing to one problem with ListView. I would like to refresh the > ListView every time I change the base data. Please

[android-developers] Re: com.google.android.voicesearch

2009-02-17 Thread Rob Franz
I'm interested in the speech to text part - sorry, I should have mentioned that in the previous mail. On Tue, Feb 17, 2009 at 12:16 PM, Mike Hearn wrote: > > If it's not on developer.android.com then it's not available to apps. > What would you do with it? If you just want to trigger the app you

[android-developers] Opening for Google Android Developer with Mobile app Development MNC in Bangalore

2009-02-17 Thread Daniel
Salaam developers, I wanted to introduce to you guys about a niche opportunity to work on the Android Platform for one of our MNC clients who are into mobile application development. Following is the JD and some information about out Client Position: Sr. Software Engineer Exp: 3-8 L

[android-developers] Debugging Android Native C Applications with gdb

2009-02-17 Thread sudhindra
Hi, we used the following setup and able to communicate between gdb server and gdb client. but couldnt accomplish to hit the breakpoints. breakpoints are getting ignored. Please suggest if you have any idea on this. 1.Makefile already had the -g option and the code is compiled with this op

[android-developers] Market Place not updating downloads and active users

2009-02-17 Thread wayne mcfadden- Red Droid
I have an application published in marketplace and its not updating the active users/number of downloads on the phone display or the developer console. My other application appears to be fine. Anyone else seeing this? Also when the application was uploaded over the weekend there were issues with

[android-developers] Cupcake timeline fixed

2009-02-17 Thread Al Sutton
Accorrding to the BBC[1] the G2 that Vodafone are launching in April[2] comes with CupCake. Does this mean a release date has been fixed for cupcake? Al. http://andappstore.com/ [1] http://news.bbc.co.uk/1/hi/technology/7894516.stm [2]http://shop.vodafone.co.uk/shop/mobile-phone/htc-magic --

[android-developers] is there a standard EULA?

2009-02-17 Thread craiget
Hello folks, I was reading some of the other posts about EULAs and was wondering: Does Android have a standard application EULA? If not - can it have one? should it have one? Failing that, is there a good way to let the user agree to the EULA before buying the application? Here's why I think

[android-developers] Re: Problem accessing Google Weather API

2009-02-17 Thread Scott
You may find that if you have the code that goes and grabs the code identify itself as the following user agent: "Mozilla/5.0" the code will once again work. I had this problem with a perl weather fetching script and solved it by having my http fetch software "LWP::UserAgent" identify as "Mozilla

[android-developers] accessing Gdata

2009-02-17 Thread godders29
com.google.wireless.gdata and com.google.android.gdata were removed from the 1.0 r1 library and are not part of the new 1.1 r1. I see these packages in 0.9 and previous versions. What is the reason behind removing the libraries? From what I've seen, they seem to be very useful libraries. What i w

[android-developers] is there a standard EULA?

2009-02-17 Thread craiget
Hello folks, I've read a couple of posts about handling EULAs and was wondering: Is there a standard EULA for apps on the Android Marketplace? If not, can there be and should there be? (If I understand correctly) all apps for the iPhone are subject to a standard agreement (the iTunes EULA) fou

[android-developers] Re: android.telephony

2009-02-17 Thread pynetmony
On 9 Feb., 22:47, run99ner_ff wrote: > I understand that android.telephony.PhoneStateIntentReceiver has been > retired. Why is has this be done? I need that. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Androi

[android-developers] How to load image (background) on layout

2009-02-17 Thread meouui
I want to load image - background - on layout. I use eclipse tool to develop application. Help me??? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to an

[android-developers] visual performance analyser (vpa-rcp-6.3.0-linux-x86)

2009-02-17 Thread abhi_kmr08
I am trying to run vpa-rcp-6.3.0-linux-x86 in ubuntu810 for oprofiling of android application. It is giving me error while running vpa itself. Following is the error.If anybody knows it please help in this regard. thanks Abhishek u...@ubuntu810desktop:/opt/vpa-rcp$ ./vpa Unhandled exception Type

  1   2   >