[android-developers] Looking for help testing an app

2010-10-10 Thread Mike M
Hey everyone, I don't know if this is kosher, but I wanted to see if anyone would want to test an app I built. I don't want to release an app to the market without getting out all the bugs I can, but I'm a lone developer trying to build apps on the side in my free time. I don't know many people

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-10 Thread JonFHancock
@Tom Right on, I'll give that a try. Nice sales pitch if you did work for them though ;-) On Oct 9, 11:19 am, Tom / HyperBees tomek.ml...@gmail.com wrote: @Jon You could give mopapp.com a try. They use Checkout API to get the data and present it in a very Analytics-like way. The service is

Re: [android-developers] Re: Android - landscape-right and landscape-left orientation

2010-10-10 Thread Dianne Hackborn
Sorry, there is no full-screen 180 degree rotation. The best you can do is manually rotate the drawing in your own window. On Fri, Oct 8, 2010 at 6:59 PM, DanH danhi...@ieee.org wrote: Can you draw a screen upside-down? On Oct 8, 6:02 pm, Dianne Hackborn hack...@android.com wrote: Sorry,

[android-developers] Re: positioning problem with canvas.drawBitmap()

2010-10-10 Thread newbyca
update for anyone interested. i found some more info about the problem ... i get the same results if i change my call to drawBitmap to: surfaceCanvas.drawBitmap(sprite, (int)x, (int)y, null); after looking thru the android source, the underlying native call appears to take floats for position

[android-developers] Regarding Image View

2010-10-10 Thread Jitesh mishra
Hi All, I have a query i want to set my ImageView over the Gallery,How to do this? One more thing is there any possibility to display images in android app without using Gallery view. Thanks and regards, Jitesh -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Follow up for the active install count problem

2010-10-10 Thread Doug
On Oct 9, 7:41 pm, TreKing treking...@gmail.com wrote: On Sat, Oct 9, 2010 at 1:34 AM, Doug beafd...@gmail.com wrote: Please explain to me how exactly you know what normal is given that the stat has a long reputation for being inaccurate over the past few months.  :-) I'm going for what

[android-developers] Re: Regarding Image View

2010-10-10 Thread Jitesh mishra
One more thing I would like to ask,does android support gif format? I tried once in my app but it was not showing any flash image effect, instead it just gave the effect of a jpg or any other image. So ,how to get flash image effects in android. thanks On Oct 10, 12:52 pm, Jitesh mishra

[android-developers] Re: Market misery !!

2010-10-10 Thread Doug
I interviewed with Yahoo a while back, and their strategy is to product mobile apps and SDKs that are primarily web driven with an Android/iOS shim to access the device-specific features. Honestly, I think this is a smart move because it leverages all their web content, infrastructure, and talent

[android-developers] Re: Unable to sign jar

2010-10-10 Thread Ali Chousein
Actually I cleaned the project, but it didn't help. It's a pity that I cannot reproduce it. Otherwise would have reported the bug. -- 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: Checkbox are not getting selected

2010-10-10 Thread Roman Mazur
Probably you need this http://developer.android.com/intl/de/reference/android/widget/ListView.html#getCheckedItemIds() On 9 Жов, 06:32, pramod.deore deore.pramo...@gmail.com wrote: Now I want to add selected checkboxes to array. Normally we checked whether checkbox is selected or not as if

Re: [android-developers] Regarding Image View

2010-10-10 Thread Mark Murphy
On Sun, Oct 10, 2010 at 3:52 AM, Jitesh mishra jitesh...@gmail.com wrote: I have a query i want to set my ImageView over the Gallery,How to do this? What do you mean? One more thing is there any possibility to display images in android app without using Gallery view. Use ImageView. One

[android-developers] Re: QuickContact works fine on 2.2 but not on 2.1

2010-10-10 Thread Mathias Lin
Nevermind, I just see I was using an insert-uri instead of a lookup. Nevertheless, despite the wrong uri, it worked ok in 2.2 before. On Oct 10, 11:08 am, Mathias Lin m...@mathiaslin.com wrote:   I have a ListView where I want to show the QuickContact (like in the default Contacts android app

[android-developers] Re: How to change the e-mail address programmatically?

2010-10-10 Thread Ali Chousein
After studying more in detail ContactMethods, I realized that I was using the wrong ID. Below is the code excerpt which does the job correctly. Hope it helps someone else as well. -Ali . . private static final int PEOPLE__ID_COLUMN_INDEX = 0; private static final int PEOPLE_NAME_COLUMN_INDEX =

Re: [android-developers] Is it possible

2010-10-10 Thread David Turner
If the server is addressable from the Internet (i.e. not under a NAT or firewall that hides it), then it should work (provided you code uses its public IP address to connect to it). On Sat, Oct 9, 2010 at 4:57 AM, Jatin D Patel depo.ja...@gmail.com wrote: I have developed an android app which

[android-developers] Re: How to use getContentResolver().update in combination with getContentResolver().query?

2010-10-10 Thread Ali Chousein
This is what I was trying to do: . . private static final int PEOPLE__ID_COLUMN_INDEX = 0; private static final int PEOPLE_NAME_COLUMN_INDEX = 1; . . . String[] projectionPeople = new String[] { People._ID, People.NAME }; Cursor peopleCur = getContentResolver().query(People.CONTENT_URI,

Re: [android-developers] Re: Market misery !!

2010-10-10 Thread Fabrizio Giudici
On 10/10/10 10:48 , Doug wrote: I interviewed with Yahoo a while back, and their strategy is to product mobile apps and SDKs that are primarily web driven with an Android/iOS shim to access the device-specific features. Honestly, I think this is a smart move because it leverages all their web

[android-developers] Results from Alert Dialog inline

2010-10-10 Thread ecforu
Is there a way to get alert dialog results inline (like you can with most dialogs)? I want to determine what to do next inwith a dialog, but I can't figure out how to get the results back in the same method that I create the dialog from thus allowing me to continue in my logic flow. void

Re: [android-developers] Results from Alert Dialog inline

2010-10-10 Thread Mark Murphy
On Sun, Oct 10, 2010 at 9:12 AM, ecforu ecforus...@gmail.com wrote: Is there a way to get alert dialog results inline (like you can with most dialogs)? Some platforms offer dialogs that block code execution in situ, others do not. Android does not. I want to determine what to do next inwith a

Re: [android-developers] Results from Alert Dialog inline

2010-10-10 Thread Jonas Petersson
On 10/10/2010 03:18 PM, Mark Murphy wrote: On Sun, Oct 10, 2010 at 9:12 AM, ecforuecforus...@gmail.com wrote: Is there a way to get alert dialog results inline (like you can with most dialogs)? Some platforms offer dialogs that block code execution in situ, others do not. Android does not.

[android-developers] AppWidgetProvider - Multiple widgets

2010-10-10 Thread Alex
If an app provides multiple widgets, e.g. 1x1, 3x1 etc., does each widget need its own AppWidgetProvider or can they share one? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Results from Alert Dialog inline

2010-10-10 Thread Mark Murphy
Sorry -- I took the OP literally, based on the sample code the OP provided. Inlining anonymous inner classes is a fine solution, if the only issue is keeping the code in close proximity to the code that configures the dialog. On Sun, Oct 10, 2010 at 9:38 AM, Jonas Petersson jonas.peters...@xms.se

[android-developers] Buying numbers vs developing numbers

2010-10-10 Thread Bret Foreman
It would be interesting to know if the number of people buying apps is growing as fast as the number developing them. Has anyone seen data about either? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] zxing bar-code scanner onActivityResult in not called

2010-10-10 Thread Satheeskumar Tharmarajah
thank you TerKing for your reply, I had the problem in my code, the following line shows the scan mode is 2D bar code, but I was trying with 1D bar code. after changing the mode, its working file intent.putExtra(SCAN_MODE, QR_CODE_MODE); thanks regards sathees -- You received this message

Re: [android-developers] Regarding Image View

2010-10-10 Thread Jitesh mishra
Actually sir I am using Image view, but my requirement is to use some GIF images. But when I am using it, it works like a normal JPG image, there is no animation working. Can't we use GIF images? I come to know that android 2.2 supports gif format.Mine is same but its not working.Please help me.

[android-developers] scrollbar drawable not appearing properly

2010-10-10 Thread kavitha b
Hi All, I am setting a drawable to scrollbar of a list view.But scrollbar image is not appearing properly.It appears strecthed. I tried to use 9 patch image.But still same problem. Anybody ahs used image to scrollbar successfully? Please help. Thanks Kavitha -- You received this message

[android-developers] custom border for gallery item

2010-10-10 Thread kavitha b
Hi all, I want to set custom border for gallery item. When i zoom a image which is selected in gallery,I want to change border only for selected item. How to do that? It is very urgent. Please help. Thanks Kavitha -- You received this message because you are subscribed to the Google Groups

[android-developers] usb connection issues

2010-10-10 Thread dashman
my platform is vista 64 + droid. it connects and i can download apps 3-4 times and then cannot send - times out. i cannot even restart vista - the shutdown screen just hangs. i have to shut it down manually. any help appreciate - this is throwing a real kink in my dev cycle. i have usb driver

[android-developers] Re: What's on earth the SAX Parser changes between 2.1 and 2.2

2010-10-10 Thread Indicator Veritatis
So if I read your blog post correctly, the problem is not a new bug introduced in 2.2, it is that your test code only worked because of a bug present in 2.1, but fixed in 2.2. But I have to admit I didn't spend that much time studying the blog post. I might have if I did not find the misuse of

[android-developers] Re: Simulating USB connection

2010-10-10 Thread Indicator Veritatis
That would be a bug, probably a hardware bug. But on my phone, I see no such problem: I -always- get a notification on the phone screen that USB debugging connected: A computer is connected to your phone when I hook up the USB cable to the phone -- if the other end is connected to a powered-up

[android-developers] Re: scrollbar drawable not appearing properly

2010-10-10 Thread Kumar Bibek
I am not sure, but I think you should be using an image with square dimensions. The Listview might be trying to stretch it do a squarish dimension. On Oct 10, 9:02 pm, kavitha b kkavith...@gmail.com wrote: Hi All, I am setting a drawable to scrollbar of a list view.But scrollbar image is not

[android-developers] Re: onPause not being followed by onStop and onDestroy...

2010-10-10 Thread Indicator Veritatis
As Kostya obliquely pointed out, it is onPause() that should be called, not onStop(). There is the natural pair: onResume() and onPause(). If you are in the Resumed state, you should expect the phone to call onPause() before it ever calls onStop() (as it will when the Activity goes invisible).

Re: [android-developers] Regarding Image View

2010-10-10 Thread Jitesh mishra
On Sun, Oct 10, 2010 at 4:24 PM, Mark Murphy mmur...@commonsware.comwrote: On Sun, Oct 10, 2010 at 3:52 AM, Jitesh mishra jitesh...@gmail.com wrote: I have a query i want to set my ImageView over the Gallery,How to do this? What do you mean? Sir actually i mean that i don't want any

[android-developers] Re: usb connection issues

2010-10-10 Thread DanH
I have Vista 64 and the Google phone (forget the name). Have not seen this problem. I do have assorted shutdown problems, but generally of the opposite nature -- powers off (hard) rather than hibernating. On Oct 10, 11:07 am, dashman erjdri...@gmail.com wrote: my platform is vista 64 + droid.

[android-developers] Re: Buying numbers vs developing numbers

2010-10-10 Thread DanH
You figuring that if we each bought each other's apps it would improve business?? On Oct 10, 10:25 am, Bret Foreman bret.fore...@gmail.com wrote: It would be interesting to know if the number of people buying apps is growing as fast as the number developing them. Has anyone seen data about

[android-developers] Re: Is it possible

2010-10-10 Thread DanH
(provided you code uses its public IP address to connect to it). That is the key. The internal Android-to-host IP address (I forget what it is) cannot be used. On Oct 10, 6:22 am, David Turner di...@android.com wrote: If the server is addressable from the Internet (i.e. not under a NAT or

[android-developers] Re: Looking for help testing an app

2010-10-10 Thread DanH
Sounds like a worthwhile concept, but I don't listen to music on my phone (or iPod or anything else). On Oct 10, 1:04 am, Mike M mike.mos...@gmail.com wrote: Hey everyone, I don't know if this is kosher, but I wanted to see if anyone would want to test an app I built.  I don't want to release

[android-developers] Re: Buying numbers vs developing numbers

2010-10-10 Thread Bret Foreman
Well, yeah, and we each buy our own too. So everybody gets two downloads. -- 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-developers] Rotate bitmap in opengl

2010-10-10 Thread Alistair.
I am trying to rotate a bitmap in OpenGL. I have searched around and come up with this public void drawTexture(Texture texture, int index, float x, float y, float angle) { int[] ids = texture.getTextureIds(); if (ids != null) {

[android-developers] Find Friend Location Java Example - Latitude?

2010-10-10 Thread cwgrc2
Hello: Does anyone have any simple java source examples on how to find a GPS friend, determine if they are sharing their location via Latitude and then get their location? I found some obscure python code. Seems to me this would be a common thing to do but have found no simple ways to do it

[android-developers] The dreaded error: Error parsing XML: XML or text declaration not at start of entity

2010-10-10 Thread Bret Foreman
I accidentally imported a resource file with a capital letter in the name (SDK 8) and as we all know, that corrupts the R.java file in a way that rebuilding the project doesn't fix (I renamed the file to something legal from within Eclipse, of course). So now the build chokes with the error above

[android-developers] http POST request problem

2010-10-10 Thread dashman
in the following code - i get an http response code 400 - BAD REQUEST. if i comment out the post.setEntity() line - then it works fine - response code 200. of course i've got internet permission params is a list of 1 entry - string2string mapping. URI uri = new URI(urlPath);

Re: [android-developers] The dreaded error: Error parsing XML: XML or text declaration not at start of entity

2010-10-10 Thread Mark Murphy
Project Clean from the main menu, or delete the contents of your gen/ directory. On Sun, Oct 10, 2010 at 1:51 PM, Bret Foreman bret.fore...@gmail.com wrote: I accidentally imported a resource file with a capital letter in the name (SDK 8) and as we all know, that corrupts the R.java file in a

Re: [android-developers] The dreaded error: Error parsing XML: XML or text declaration not at start of entity

2010-10-10 Thread Kostya Vasilyev
Not sure if it's the same error, but for XML parsing errors I have usually been able to simply delete them from the error window after fixing the file so it does not reappear. -- Kostya Vasilyev -- http://kmansoft.wordpress.com 10.10.2010 21:51 пользователь Bret Foreman bret.fore...@gmail.com

Re: [android-developers] Re: Buying numbers vs developing numbers

2010-10-10 Thread Kostya Vasilyev
I think it was shown - by the NASDAQ crash in March 2000 - that this particular economic model does not work for too long... :) -- Kostya Vasilyev -- http://kmansoft.wordpress.com 10.10.2010 21:06 пользователь Bret Foreman bret.fore...@gmail.com написал: Well, yeah, and we each buy our own too.

Re: [android-developers] Re: Is it possible

2010-10-10 Thread Kostya Vasilyev
The special address you probably are referring to only comes into play in the emulator (mapped to the host computer's localhost). Right about the possibility of NAT(s) between the phone and the internet, though. So accepting connections works on a local network (wifi), but in the general case,

Re: [android-developers] usb connection issues

2010-10-10 Thread Kostya Vasilyev
Might want to try Motorola's drivers... -- Kostya Vasilyev -- http://kmansoft.wordpress.com 10.10.2010 20:07 пользователь dashman erjdri...@gmail.com написал: my platform is vista 64 + droid. it connects and i can download apps 3-4 times and then cannot send - times out. i cannot even

[android-developers] Singleton object with context?

2010-10-10 Thread Chuck Lega
Hi, I often run into the following dilemma: I need some singleton-like object in my app (typically some central manager-like thing) and this object needs a context for various things. This means that I either have to pass a context to all methods needing one or have some sort of init-pattern to

[android-developers] Re: automotive related project ideas

2010-10-10 Thread cellurl
we discuss automotive applications such as offline-routing anti-speeding on this google group. http://groups.google.com/group/wikispeedia CHEERS On Oct 8, 12:23 pm, MB manoj.bi...@gmail.com wrote: How about an app that does offline routing? You would get a lot of ATT, T-mobile  customers.

Re: [android-developers] AppWidgetProvider - Multiple widgets

2010-10-10 Thread Kostya Vasilyev
Alex, The widget_info.xml file can only specify one particular minimum size, and this is fixed at application build time. Since widget_info.xml files are referenced from the app widget provider declarations in the application manifest, there have to be separate receiver blocks there

Re: [android-developers] Singleton object with context?

2010-10-10 Thread Mark Murphy
On Sun, Oct 10, 2010 at 2:44 PM, Chuck Lega chuck.l...@gmail.com wrote: I often run into the following dilemma: I need some singleton-like object in my app (typically some central manager-like thing) and this object needs a context for various things. This means that I either have to pass a

[android-developers] Re: The dreaded error: Error parsing XML: XML or text declaration not at start of entity

2010-10-10 Thread DanH
Export the project, delete it, then import it? On Oct 10, 12:51 pm, Bret Foreman bret.fore...@gmail.com wrote: I accidentally imported a resource file with a capital letter in the name (SDK 8) and as we all know, that corrupts the R.java file in a way that rebuilding the project doesn't fix (I

[android-developers] Re: The dreaded error: Error parsing XML: XML or text declaration not at start of entity

2010-10-10 Thread DanH
Though seems like cleaning the project should work. On Oct 10, 12:51 pm, Bret Foreman bret.fore...@gmail.com wrote: I accidentally imported a resource file with a capital letter in the name (SDK 8) and as we all know, that corrupts the R.java file in a way that rebuilding the project doesn't

[android-developers] Does android support .gif format??

2010-10-10 Thread Jitesh mishra
Hello everybody, I want to know whether android 2.2(froyo) supports .gif or not. If not then what is the substitute of this. I want to use some animated images, and as for as my knowledge is concerned it neither support .gif nor .swf. I am a bit new to android. Please help me out. Thanks and

Re: [android-developers] Does android support .gif format??

2010-10-10 Thread Kumar Bibek
Not yet, I suppose. Look at transition drawables. On Mon, Oct 11, 2010 at 12:53 AM, Jitesh mishra jitesh...@gmail.com wrote: Hello everybody, I want to know whether android 2.2(froyo) supports .gif or not. If not then what is the substitute of this. I want to use some animated images, and as

[android-developers] Re: zlib / inflate / partial sync / hanging

2010-10-10 Thread rtreffer
I've finally found the problem: /** * Returns 0 when when this stream has exhausted its input; and 1 otherwise. * A result of 1 does not guarantee that further bytes can be returned, * with or without blocking. * * pAlthough consistent with the RI, this behavior is

[android-developers] Re: Does android support .gif format??

2010-10-10 Thread Kumar Bibek
Not yet. Have a look at transition drawables On Oct 11, 12:23 am, Jitesh mishra jitesh...@gmail.com wrote: Hello everybody, I want to know whether android 2.2(froyo) supports .gif or not. If not then what is the substitute of this. I want to use some animated images, and as for as my

[android-developers] Re: The dreaded error: Error parsing XML: XML or text declaration not at start of entity

2010-10-10 Thread Bret Foreman
But it's not really a parsing error. It's a quirk R.java. Removing the error does nothing. Even removing the particular file does nothing, since the error simply moves to the next xml file in res. -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: Does android support .gif format??

2010-10-10 Thread Jitesh mishra
Thanks for your kind reply sir. On Mon, Oct 11, 2010 at 2:06 AM, Kumar Bibek coomar@gmail.com wrote: Not yet. Have a look at transition drawables On Oct 11, 12:23 am, Jitesh mishra jitesh...@gmail.com wrote: Hello everybody, I want to know whether android 2.2(froyo) supports .gif or

[android-developers] Re: The dreaded error: Error parsing XML: XML or text declaration not at start of entity

2010-10-10 Thread Bret Foreman
The fundamental problem is that Eclipse will allow you to import files into /res that do not have legal Android names. In my case I had a capital letter the name of a PNG file. Once you do it, then R.java won't build right. I'm sure there's some broken project file somewhere but I can't find

Re: [android-developers] Re: The dreaded error: Error parsing XML: XML or text declaration not at start of entity

2010-10-10 Thread Kostya Vasilyev
Clearing the error manually in this case has worked for me (after renaming the file and refreshing the source tree). -- Kostya Vasilyev -- http://kmansoft.wordpress.com 11.10.2010 1:06 пользователь Bret Foreman bret.fore...@gmail.com написал: The fundamental problem is that Eclipse will allow

[android-developers] MoPub - Mobile Advertising Platform

2010-10-10 Thread Jim Payne
Hi guys - We are developing an ad management solution for publishers that's optimized for Android. It supports banner ads that you might be working with already but also adds interstitial support and other advanced features. We are looking for some developers who'd be interested in working with

[android-developers] Connection problem

2010-10-10 Thread aychiquita
Hi everybody, for some time now, I'm facing a problem I can't solve. I'm having a method getJSONObject (see below) that - given a url as the parameter - returns the requested JSON object. I'm connecting to an API, but that's not important to know, as the mistake won't be there (I tested it a lot

[android-developers] How to pause game on pop-ups.

2010-10-10 Thread Tim Wright
Dear All, I am working on an application and I want to be able to detect when a pop-up (e.g Charger notification, task switcher or the dialog that pops up when you hold the power button) is obscuring the game so that I can bring up the pause menu. These notifications do not produce an onPause

[android-developers] Can any one help me to break large Html file to small html files in java

2010-10-10 Thread santhu
Hi all, Presently am displaying html file in web view and my emulator size 1024*600. if the html file is large then user is scrolling down to see bottom part of the html. I Need to break these html file in equal parts so that it fits exactly in my screen size. i don't want USER

[android-developers] Custom Scroll bar

2010-10-10 Thread guru sagar
Hi, Is there any chance of making Scroll bar like this by using existing android's Scroll view s . Thanks, sagar -- 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] Buttons on Scroll bar

2010-10-10 Thread Sagar
How to make scroll bar with buttons on it . Can you please suggest -- 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

[android-developers] Advertising network

2010-10-10 Thread Bruno Rørdam
Hello everyone, i want to add promotion in my app to get earn money in this way. What is your experience with this? which advertising network would you recommend? Thanks in advance! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Android group

2010-10-10 Thread karthik
Hi, I am a beginner in writing Android apps and would like to be a part of the group to get a more in depth understanding. regards, Karthik -- 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] Question about writing Events into Google Calendar in Android

2010-10-10 Thread Kapuddi Liu
Hello, All: when I insert one new Calendar Event into Google calendar from my app, the log message was given: 10-05 00:30:44.171: ERROR/DatabaseUtils(8479): Error inserting transparency=0 dtstart=128589120

[android-developers] Android Market crashes after uploading an upgrade of my app at market

2010-10-10 Thread sai
I uploaded an upgrade to my application and opened it again to see if everything is correct or not. I was surprised to see 8 screen shots instead of 2. I deleted 6 images and save it. but when ever I reopen I see 8 images. When I tried to download updated version of my app on my device thorough

[android-developers] Accessing the apk-signing certificate from inside the program

2010-10-10 Thread BGraversen
Hi. I've posted this on Android Security as well, but that group does not appear to have as much activity, so I'm hoping someone here can help me. Actually I guess my question belongs in this group anyway, even though it touches on some of the security aspects of android packages. My goal is to

[android-developers] startService an unusual way results in a a NullPointerException

2010-10-10 Thread vitamoe1.6
Hi everyone! I am trying to start a service an unusual way. The reason for this is to keep at least some parts of the program platform independent. The startService() function is called from the Service class itself and there I get a NullPointerException. I made a small example to show the

[android-developers] MoPub - Mobile Advertising Platform Private Beta

2010-10-10 Thread James Payne
Hi guys - We are developing an ad management solution for publishers that's optimized for Android. It supports banner ads that you might be working with already but also adds interstitial support and other advanced features. We are looking for some developers who'd be interested in working with

[android-developers] Scrollbar

2010-10-10 Thread guru sagar
how to keep buttons on the scroll bar -- 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-developers] Androidpedia collaborative project...

2010-10-10 Thread Emerson
Hi Android Developers, I wanted to share an idea with you and get your feedback about it. I own the domain androidpedia.com initially I got the domain because I was going to start an android development division in one of my companies. Fortunately business went extreme well on other divisions

[android-developers] Customised border for the imageView in gallery

2010-10-10 Thread Babita
How to design custom border for the imageview used in gallery?? -- 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-developers] Flash games for Android is it possible?

2010-10-10 Thread Josh
I have several games I have developed for flash and use as google gadgets. I want to package them for the addroid market. Is this possible? Can you package flash games for use on android phones. I can play them if i like directly to the swfs on my server. Can you point out any tutorials on how

[android-developers] Re: Android Web Server

2010-10-10 Thread % rm
We had apache web server running in nokia s60 phones. Google for raccoon or Johan Wikman. A gw handled the nat issue. The battery ran out quite fast but because we can is a good reason to give ita try! br, risto On 7 loka, 20:19, Bret Foreman bret.fore...@gmail.com wrote: I've run a web

[android-developers] Wireless settings dialog

2010-10-10 Thread paresh mayani
Hello, i am checking networking connection using the below code: public static boolean haveInternet(Context ctx) { NetworkInfo info = (NetworkInfo) ((ConnectivityManager) ctx.getSystemService(Context.CONNECTIVITY_SERVICE)).getActiveNetworkInfo(); if (info == null || !info.isConnected()) {

[android-developers] HelloWorld.... now what?

2010-10-10 Thread Joshua Germon
I've just started here. I downloaded the SDK did the HelloWorld tutorial and I don't no what to do next. This is the first Java programing I've ever done. I want to start making my own apps but how Please clear this up for me! Cheers Josh -- You received this message because you are

[android-developers] Re: Get Location debbuging on device

2010-10-10 Thread Zarah Dominguez
TreKing is right. You should enable GPS on your test device (Settings Location and Security). Then in your onLocationChanged, you can put in a Toast or Log to display to you the current location. If you don't get location updates, try setting Use Wireless Networks (also in Settings Location

[android-developers] Application Testing Group anyone?

2010-10-10 Thread Sanjay Parekh
Would anyone be interested in setting up an application testing group where various beta apps could be tested by individuals on DIFFERENT phone models to help ensure the stability of new apps + provide concise feedback to the developer... I ran into this problem because for some types of apps the

[android-developers] Proper way to use Non-Extended Classes?

2010-10-10 Thread Ehask
I have an app I am working on and being new to Android Dev I am running into a situation I have a Scores class not extended from anything (Activity,Service, etc) but in the same package that needs to access SharedPreferences public class Scores { Context ctcx; public Scores(Context context) {

[android-developers] Re: TextView height not collapsing

2010-10-10 Thread Tim S
Duh, I missed that somehow. Thanks! On Oct 6, 9:00 pm, TreKing treking...@gmail.com wrote: On Thu, Sep 30, 2010 at 2:25 PM, Tim S taschmidt1...@gmail.com wrote: How exactly do you get them to go away without removing them altogether?

[android-developers] Moderators: Where did my post go?

2010-10-10 Thread Jonas Schwertfeger
24 hours ago I posted a message with the subject View.computeScroll(): How to implement it correctly?. It was never published. Where did it go? Thanks, -Jonas -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Droid 2 Fast Web Installer

2010-10-10 Thread wecramer
I've seen all the posts claiming the Droid ID is the problem with why apps cannot push. However, why is it that I can uninstall apps via the Appbrain website and they will automatically uninstall on my Droid 2, but I just cannot install apps? -- You received this message because you are

[android-developers] onPrepareDialogBuilder, onClick setItemChecked for multi choice

2010-10-10 Thread WWarrior
Hi, I've spent over a week trying to figure out a way to do a Limited Multi Selection Preference list. Meaning I want to limit how many of the items a user can check. Nothing I've tried works. I'm ready to give up on Android if something seemingly simple is so hard. I've been programming a long

[android-developers] Re: Launch camera app with an intent?

2010-10-10 Thread Zeljko Devcic
Please check android.provider.MediaStore.ACTION_IMAGE_CAPTURE Zeljko On Oct 8, 12:23 am, Ozymandias jor...@gmail.com wrote: I can't find any intent which opens the camera. The closest I've found is ACTION_CAMERA_BUTTON but that breaks if the phone has no hardware button for the camera.

Re: [android-developers] Re: Aplicação criação d e arquivo PDF.

2010-10-10 Thread sagar borse
To ask in english you can use following service of GOOGLE Translator http://www.google.co.in/language_tools?hl=en THANKS, SAGAR BORSE BE IT GECA Registered Linux User #500860 स्वताः मुक्त व्हा , अन नंतर स्वॅाफ्टवेअर मुक्त करा. 2010/10/8 Paul Turchenko paul.turche...@gmail.com Try

[android-developers] post processing dgps

2010-10-10 Thread foracc
Hi, I need to do Post processing DGPS in android app. I tried the 'gps logger for android' app to collect gps data in gpx format. In order to do post processing i need the gps data to be in RINEX format. I cudnt find any tools to convert into rinex file format. how do i do it? Is there any other

[android-developers] SMS Sent but Not Received

2010-10-10 Thread QD
I have an app that listening to the incoming text msg. When it comes, the app replies a msg to the sender. On emulator, it seems working fine as designed. After deployed on phone, the incoming msg comes, the app still can be notified. So the app sends a reply to the sender. The problem is the

[android-developers] How to connect internet in Android Emulator???

2010-10-10 Thread sagar borse
I dont know, how to connect internet in Android Emulator??? I am currently working on Final year android project based on GPS. Please help me out!!! THANKS, SAGAR BORSE BE IT GECA Registered Linux User #500860 स्वताः मुक्त व्हा , अन नंतर स्वॅाफ्टवेअर मुक्त करा. -- You received this

[android-developers] X Axis Sensor Correction - Flipped Sensor Detection - Froyo

2010-10-10 Thread helfrez
We are trying to determine the best way to patch InputDevice.java to correct a sensor issue. The touchscreen is detecting the location opposite of the pressure. For instance, to unlock the device, I have to put my finger in the exact spot on the left side of the screen for it to register on the

[android-developers] How to programatically Pan one image over another using a seekbar to control Pan?

2010-10-10 Thread grADE
Hi All, I'm wanting to implement a seekbar to control the horizontal position of an image. I have tried to use a matrix.postTranslate but it doesnt appear to do what I want. Snippet below: private void drawMatrix(){ Matrix matrix = new Matrix(); matrix.postTranslate(panX, panY);

[android-developers] Hiring Experienced Android Developers - SF Bay Area / NYC

2010-10-10 Thread James Payne
Hello, I am from MoPub, the mobile monetization platform for iOS and Android. We are actively hiring Android developers to grow out our developer relations and outreach teams. If you have experience building Android apps and have some apps that are live in the Market, we'd like to talk to you.

[android-developers] Gallery view problems - external memory

2010-10-10 Thread Stephen Pengilley
Hi all, I have developed a very simple gallery (it started as the hello gallery example) where I have added code to get the images from the content provider. It should return all images from the SD card but it is returning no images, my gallery view is blank. I am a fairly new developer, just

[android-developers] writing Events into Google Calendar in Android failed

2010-10-10 Thread Kapuddi
Hello, All: when I insert one new Calendar Event into Google calendar from my app, the log message was given: 10-05 00:30:44.171: ERROR/DatabaseUtils(8479): Error inserting transparency=0 dtstart=128589120

[android-developers] How to create Custom AutoCompleteTextView ?

2010-10-10 Thread Vikas Patidar
Hi all, I want to display List of Contact Names with the respective phone numbers like --- Vikas Patidar 99 --- Rahul Patidar 99

[android-developers] Hiring Experienced Android Developers - SF Bay Area / NYC

2010-10-10 Thread Jim Payne
Hello, I am from MoPub, the mobile monetization platform for iOS and Android. We are actively hiring Android developers to grow out our developer relations and outreach teams. If you have experience building Android apps and have some apps that are live in the Market, we'd like to talk to you.

[android-developers] Architectural question

2010-10-10 Thread DragonFlyJones
I'm new to Android and I'm porting an iPhone app I did. I've been reading up on Android services and they look very useful for the network component of my app. I assume there is a common pattern for what I'm trying to do, so here are the details: 1. User1 and User2 agree to enter a virtual room.

  1   2   >