[android-developers] No stats? 0 total; 0 active installs while 5000 AdMob impressions??

2010-01-08 Thread greg1x
Hi! I have uploaded a free AdMob supported app to the market two days ago. AdMob shows 5000 impressions (and revenue), while: Android.com: 0 total; 0 active installs (0%) Android Market on the phone: 50 downloads 5000 Ad impressions (and revenue) for 50 downloads and 0 installs can not be

[android-developers] Re: get outgoing call details in background

2010-01-08 Thread instcode
I have a workaround for this one by deferring the call log retrieving process a little bit, say 200ms. I'm still looking for a more elegant solution. On Nov 20 2009, 11:06 pm, patrizio.munzi patrizio.mu...@eris4.com wrote: Hi guys, in this last month I've been trying to develop on Android.

[android-developers] Android Coverflow widget

2010-01-08 Thread Taf
Hi, I've had a go at creating a coverflow like widget. My results can be found here: http://www.inter-fuser.com/2010/01/android-coverflow-widget.html If you fancy giving it a try I'd been interested in your feedback. I've only tried it on a HTC G1 running Android 1.1 Thanks, Neil. -- You

Re: [android-developers] Re: Where to get a Samsung Moment for development

2010-01-08 Thread dan raaka
if you are local to mountain view let me know. I can help -Dan On Thu, Jan 7, 2010 at 4:53 AM, Don donal.morris...@gmail.com wrote: Hello, I'm now having the exact same problem, a customer is reporting an issue with my application on their Samsung Moment, but I can't debug the issue as I

Re: [android-developers] iPhone to Android: Creating good Android Interfaces

2010-01-08 Thread Michael Rueger
On 1/8/2010 7:57 AM, Ben Gotow wrote: Hey everybody, I'm porting an iPhone app to Android and I'm having trouble designing an interface that looks and feels Android. I've read all of the design documents in the Android Dev Guide and looked through all the Google-designed apps, but I feel like

Re: [android-developers] How to read XML file from sdcard and parse it?

2010-01-08 Thread dilli rao
InputStream obj_is = null; Document obj_doc = null; DocumentBuilderFactory doc_build_fact = null; DocumentBuilder doc_builder = null; obj_is = new FileInputStream(/sdcard/xmlfile.xml); doc_build_fact = DocumentBuilderFactory.newInstance(); doc_builder = doc_build_fact.newDocumentBuilder();

[android-developers] Re: Chinese company offers translation for right to publish app on their market

2010-01-08 Thread ko5tik
Why would it be illegal? If your application is under something like CC, you already allowed it - and there is a small checkbox which allows application to be taken off phone - also invitation to republish -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread Nanard
Hi, I agree about the size limit problem. I think there should be a size limit (to keep RAM for OS other app), but we should be able to check in our code if we are 'near' the allocation limit for our app. Anyway, for your case : would it be possible to REMOVE all images from the .apk, and

[android-developers] My activity runs onCreate() every time and process do not disappear

2010-01-08 Thread Yuchih
Hello all: I have a activity always runs onCreate() after I come back to previous activity. I think my emulator needs memory, so it killed my activity. But I use eclipse DDMS tool to watch my process, it still there with the same process id. This really confuses me. Could anyone explain why? Here

[android-developers] Re: NPAPI support in Android 2.0 SDK WebView

2010-01-08 Thread garbeam
Hi there, any news on my NPAPI support question in Android 2.0+? Thanks, Anselm On Dec 15 2009, 4:03 pm, garbeam garb...@gmail.com wrote: Hi there, in older android SDK versions it was possible to load custom NPAPI plugins into the WebView through reading them from assets and writing them

Re: [android-developers] No stats? 0 total; 0 active installs while 5000 AdMob impressions??

2010-01-08 Thread Abdul Mateen
Well! I beleive that impression cpm(cost per thousand impression ) is not added in revenue until the end of payment processing. I think you will only see the per click revenue for now. am I right? A little advice. Update your application and add flurry and see the stats. Thank You. On Fri, Jan

[android-developers] Re: What is the defalt screensize of emulator.

2010-01-08 Thread jwei512
Depends what skin you are using and what API level the emulator is set on... For instance, if you are using the default skin for the emulator on API Level 3, the screen size is 480 x 320. But again, this will change on a phone to phone basis. - jwei http://thinkandroid.wordpress.com On Jan 7,

[android-developers] Re: Segfault in what looks like WebView

2010-01-08 Thread Krystian Lewandowski
Hi, same thing happens when i'm trying to use fbconnect-android sample on emulator (1.6): http://code.google.com/p/fbconnect-android/issues/detail?id=23 I don't have any Unix machine here, so can't build SDK/.so with debugging symbols and decode stack trace. Is there a way to do this other way?

[android-developers] A Simple Layout question

2010-01-08 Thread Abdul Mateen
Hi, I want to add admob add in my application, I want to make application for every screensize, I am having a problem with is, I want to arrange a layout such that, ad comes on the top the rest of which should be webview. I can do it for normal screen sizes by hardcoding the screen size to desired

[android-developers] apk is being downloaded as zip file in IE

2010-01-08 Thread Jags
I develop for Android in mac . Apart from publishing my app in google market, I also provide the apk file on my website. As, unlike iPhone android published apps dont give us a link similar to itunes link to app, we provide our link pointing to apk file. Now the problem is, this apk file when

[android-developers] Re: create app that comes with a widget and the program

2010-01-08 Thread kirti kaul
Hi, This can be acheived by implementing the AppWidgetProvider Also you need to have a configuration activity,which launches the App widget... The implementation is simple,jus you need to add an activity and use shared preferences to communicate with the AppWidget There are many examples

[android-developers] Does emulator 1.6/2.0 supports bluetooth and WIFI?

2010-01-08 Thread EvgenyV
Hi all! 1. Can I emulate the WIFI and bluetooth on emulator? 2. Can you send, please the links to examples for bluetooth and WIFI development? Thanks in advance, Evgeny -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] How to add footer and Header to a list

2010-01-08 Thread RamaMohan
Hi all, I have a list view and i need to add a header and footer .In the footer i need to have a button like Next to go to next page.I need it urgently. If anyone knows the answer please send me .. Thanks Ram -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: apk is being downloaded as zip file in IE

2010-01-08 Thread zero
make sure you send the right mime type with your file. application/vnd.android.package-archive auto-detection of clients may interpret the file as a zip, because it is, sorta. ;) On Jan 8, 12:44 pm, Jags jag...@gmail.com wrote: I develop for Android in mac . Apart from publishing my app in

[android-developers] Intent filter matching problem

2010-01-08 Thread Felipe Henriques da Silva
Hi everyone, I have a problem with an intent-filter matching. I am using the following filter for my activity: intent-filter action android:name=android.intent.action.SEND_MULTIPLE / category android:name=android.intent.category.DEFAULT /

[android-developers] Re: Android Coverflow widget

2010-01-08 Thread zero
good work, thanks for releasing as open source :) On Jan 8, 9:45 am, Taf neild...@gmail.com wrote: Hi, I've had a go at creating a coverflow like widget. My results can be found here: http://www.inter-fuser.com/2010/01/android-coverflow-widget.html If you fancy giving it a try I'd been

[android-developers] Re: What is the defalt screensize of emulator.

2010-01-08 Thread Sasikumar S
See this link http://www.androidpeople.com/category/screen/ On Jan 8, 11:39 am, Manoj linkex.ma...@gmail.com wrote: Please tell what is the default screensize of emulator. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] apk is being downloaded as zip file in IE

2010-01-08 Thread Mark Murphy
Jags wrote: I develop for Android in mac . Apart from publishing my app in google market, I also provide the apk file on my website. As, unlike iPhone android published apps dont give us a link similar to itunes link to app, we provide our link pointing to apk file. Now the problem is,

Re: [android-developers] My activity runs onCreate() every time and process do not disappear

2010-01-08 Thread Mark Murphy
Yuchih wrote: Hello all: I have a activity always runs onCreate() after I come back to previous activity. I think my emulator needs memory, so it killed my activity. But I use eclipse DDMS tool to watch my process, it still there with the same process id. This really confuses me. Could

Re: [android-developers] How to read XML file from sdcard and parse it?

2010-01-08 Thread Mark Murphy
ROHIT wrote: I want to access the XML file from sdcard and i want to parse thar file. How ta access this file and pass it to Parse method? Use Environment.getExternalStorageDirectory() and build a File object to point to the XML file in question. After that, if you are using DOM or SAX, it is

[android-developers] AbortBroadcast Problem With 2.0 and 2.0.1 SDK's

2010-01-08 Thread Gulfam
Hi All, I am facing issue with 2.0 and 2.0.1 on aborting broadcast for out going calls. In my main activity on callButton press I am initiating call like this /*Mian Activity Where Call Initiating**/ public class MainActivity extends Activity implements

Re: [android-developers] Developer console stopped updating?

2010-01-08 Thread Justin Giles
Just updated for me. Don't know why it was down. And no, the mass active install purging from Dec. 18 still hasn't been fixed. On Thu, Jan 7, 2010 at 6:34 PM, Greg Donald gdon...@gmail.com wrote: On Thu, Jan 7, 2010 at 6:26 PM, nubin...@gmail.com nubin...@gmail.com wrote: My total and

[android-developers] Re: OpenGL; GL11.glDrawTexiOES does not seem to work for Nexus One

2010-01-08 Thread Streets Of Boston
Thanks! This function is indeed standard GL 1.1. Maybe there's something else that I don't do right that happens to work on all other phones, but not on the Nexus: Here is the code that draw my background texture: beginBGDrawing(gl); gl.glBindTexture(GL10.GL_TEXTURE_2D, mBackgroundTextureID);

[android-developers] startActivityForResult singleTop.

2010-01-08 Thread Keean Schupke
I need to create an activity that can be singleTop so that multiple intents get sent to the onNewIntent method without restarting the activity. I also need this activity to return a result. The basic behaviour is: Activity A calls startActivityForResult on B one or more times (providing updated

[android-developers]

2010-01-08 Thread Kather Jailani
sent.from.G1 -- 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+unsubscr...@googlegroups.com For more

Re: [android-developers] Re: MapView Overlay problem

2010-01-08 Thread TreKing
I'm still a bit confused on what you're doing, but I would suggest: 1 - Subclass ItemizedOverlay instead of Overlay to manage a collection of similar items at once. It maintains a list OverlayItems that represent each unique point on the map. In your case these would be the Track points you have.

[android-developers] Re: OpenGL fixed point vs. floating point

2010-01-08 Thread Marc
Just render a small object using identical code except one is float and one is int, then time them. An API would be nice though. On Jan 7, 10:08 pm, Peter Eastman peter.east...@gmail.com wrote: First you need to find exactly what kind of CPU it has. Then go to the manufactures web site and

[android-developers] Re: Android Coverflow widget

2010-01-08 Thread Taf
Thanks glad you like it :) On 8 Jan, 12:31, zero zeroo...@googlemail.com wrote: good work, thanks for releasing as open source :) On Jan 8, 9:45 am, Taf neild...@gmail.com wrote: Hi, I've had a go at creating a coverflow like widget. My results can be found here:

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread ian
Thanks for the interesting suggestion, although it sounds a little technical for my limited expertise. I don't like the idea of the users having to download all that data every time they use my program. That basically turns the app into just a web site, sort of. I could probably shrink it all

[android-developers] Re: Chinese company offers translation for right to publish app on their market

2010-01-08 Thread Matt
I was also contacted by a Chinese company called, Netdragon Company. They are looking for applications to publish in their market. Does anyone know if they are a legitimate business, and safe to work with? Matt On Jan 8, 2:26 am, ko5tik kpriblo...@yahoo.com wrote: Why would it be illegal? If

[android-developers] Re: AppWidget is not updating

2010-01-08 Thread Vikas1976
Forget it, I figured it out. In the irrelevant code I was calling onUpdate() in onReceive() whenever I wanted to update the app, but I was sending: new int[] {0} as my AppWidgetIds. Duh! Vikas -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: Nine patch pre-scaling on Hdpi

2010-01-08 Thread Mariano Kamp
Hmmh, I checked again and it didn't work. Maybe it worked in the beginning and I am sure that I verified that with an 1.5 emulator, but I added different things meanwhile, e.g. added drawable-mdpi version without providing one in drawable also. But then it seems like I haven't tested that on 1.5

[android-developers] Re: No stats? 0 total; 0 active installs while 5000 AdMob impressions??

2010-01-08 Thread tobias429
The update of the market stats appears to have been down for the last two days. Mine have been updated again some hours ago. If you check back on the market you might see yours to be updated now as well. On 8 Jan., 09:13, greg1x gre...@yahoo.com wrote: Hi! I have uploaded a free AdMob

Re: [android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread Cédric Berger
On Fri, Jan 8, 2010 at 15:43, ian stilbit...@gmail.com wrote: Thanks for the interesting suggestion, although it sounds a little technical for my limited expertise. I don't like the idea of the users having to download all that data every time they use my program. That basically turns the

[android-developers] I am a german market developer. How can I see the english comments to my program?

2010-01-08 Thread Martin
Hi! I am a german market developer. How can I see the english comments to my program? I just see the german ones. Greetings, Martin -- 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: what is a suitable upper limit for application size?

2010-01-08 Thread Kaj Bjurman
25% Don't you think that that is too much? Most users install more than 4-5 applications. I would never ever install an application that is that large. I do however agree with the others who says that it's ok if you download the images dynamically, and stores it on the sdcard. That's how my

[android-developers] addToMyContactsGroup does not seem to work on HTC Hero

2010-01-08 Thread fry
Hi, I am adding a new contact programatically in this way: final Uri personUri = context.getContentResolver().insert (Contacts.People.CONTENT_URI, peopleValues); final long contactId = ContentUris.parseId(personUri); Contacts.People.addToMyContactsGroup(context.getContentResolver(), contactId);

[android-developers] Re: EditTextPreference: how to make it single-line?

2010-01-08 Thread Edward Falk
On Jan 3, 11:13 am, Wayne Wenthin wa...@fuligin.com wrote: android:singleLine=true Ahh, perfect. I thought that attribute was only for TextView; it's not documented in the EditTextPreference page, but I guess I should have tried it anyway. Thank you very much. -- You received this message

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
Hi, What do you mean with not reinitiating the call ? On Fri, Jan 8, 2010 at 4:07 AM, Gulfam gulfa...@gmail.com wrote: Hi , I was aborting BroadCastReceiver using abortBroadcast(); method. Its working fine with 1.0 to 1.6 but on 2.0 or + its not working. I have checked the documentation

[android-developers] Re: EditTextPreference: how to make it single-line?

2010-01-08 Thread Edward Falk
On Jan 8, 8:12 am, Edward Falk ed.f...@gmail.com wrote: it's not documented in the EditTextPreference page Ooor, I could have read the opening paragraph instead of skipping straight to the list of XML attributes. Duh. -- You received this message because you are subscribed to the

[android-developers] Re: No stats? 0 total; 0 active installs while 5000 AdMob impressions??

2010-01-08 Thread WoodManEXP
My app numbers have not changed in several days which strikes me as unusual as they were very active through October, November and December. But on about Jan 2 they stopped moving. And the active install numbers keep fluctuating in strange ways. Maybe all the Androids being advertised on TV just

[android-developers] Re: ImageSpan not supported in RemoteViews ?

2010-01-08 Thread Koxx
I have the same problem :( -- 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+unsubscr...@googlegroups.com

Re: [android-developers] A Simple Layout question

2010-01-08 Thread TreKing
I can do it for normal screen sizes by hardcoding the screen size to desired px but it is not working on bigger screensizes, I want to add this in layout.xml please advice. You shouldn't be hard-coding pixels sizes for anything in your layouts. As you have already seen, this will break as

[android-developers] Re: blocking UI thread when Yes/No AlertDialog is displayed

2010-01-08 Thread Ted
Interesting thread. I actually want the exact same thing as swapnil kamble, coming from .NET it is very nice to deal with MessageBox.Show. The Android way is actually horrible from where Im standing (even though I really like Android and the framework in general). I need to not go forward with

[android-developers] Re: blocking UI thread when Yes/No AlertDialog is displayed

2010-01-08 Thread Ted
swapnil: I dont understand the code that Romain posted. Would you like to help me out, sending some code if you have a modal dialag as you were looking for? I'd appreciate it =) Regards, Ted On 4 Jan, 11:51, swapnil kamble swap.kam...@gmail.com wrote: Thanks Dianne for your nice explanation.

Re: [android-developers] Re: blocking UI thread when Yes/No AlertDialog is displayed

2010-01-08 Thread Romain Guy
It's not horrible, it's different. It's not more difficult or easier than MessageBox.Show, it's just different. I need to not go forward with some code until the users has made its decision. To have to do these very messy workarounds is just too sad = These are not workarounds, they're the way

[android-developers] Re: Initiating a GPRS connection

2010-01-08 Thread Android Development
Really need to find a way to do this guys. Help really appreciated. On Thu, Jan 7, 2010 at 6:13 PM, Android Development indodr...@gmail.comwrote: Hello, Any feedback on how to achieve this task? On 1/4/10, Android Development indodr...@gmail.com wrote: Hello, If I wish to initiate a

[android-developers] upgrade my G1 to android 2.0

2010-01-08 Thread DAVIDT
Hi All I want to upgrade my G1, which is currently running on andriod 1.6, to andriod 2.0 or 2.1. Is it possible? Thanks David -- 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] upgrade my G1 to android 2.0

2010-01-08 Thread Mark Murphy
DAVIDT wrote: I want to upgrade my G1, which is currently running on andriod 1.6, to andriod 2.0 or 2.1. Is it possible? Not presently, no. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Consulting/App Development:

[android-developers] Re: OpenGL fixed point vs. floating point

2010-01-08 Thread Peter Eastman
Just render a small object using identical code except one is float and one is int, then time them. Unless a garbage collection happens to kick in during one of those tests, or the OS decides to timeslice to another process, or the JIT decides to recompile some code with better optimization,

[android-developers] How do I get full-sized image back from Camera using MediaStore.IMAGE_CAPTURE ?

2010-01-08 Thread Ray Benjamin
Hi, I managed to figure out how to get the camara application to give me an image, but it is rather tiny, only 18k. Has anyone figured out a reliable way to get a full-sized image returned if you are using a MediaStore.IMAGE_CAPTURE intent? Thanks, Ray -- You received this message because

[android-developers] Re: addToMyContactsGroup does not seem to work on HTC Hero

2010-01-08 Thread fry
I have made some experiments here and found that this labels google/ phone are not about grouping - there is undocumented type column in the People table which seems to be responcible for this. The following code: final Cursor pcur = context.managedQuery(Contacts.People.CONTENT_URI,

[android-developers] Virtual Camera + Accelerometer + 3ds max

2010-01-08 Thread Guilherme Vieira
Good afternoon. Here is my idea shortly: I want to make a virtual camera to 3ds max. I mean, I want to be able to move my phone in space and then export the transformations to my 3ds camera. So I have to consider *basic *points: - how can I recover the accelerometer values and turn then

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread ian
Well that idea of downloading of data onto the SD card does sound like the proper route to take. If it didn't happen every start-up then it isn't much of a problem at all. I'll sort out the details and take that good advice. Thanks for the help folks. - Ian On Jan 8, 11:28 am, Cédric Berger

[android-developers] Re: upgrade my G1 to android 2.0

2010-01-08 Thread schwiz
if you root your phone and head over to xda there are a few 2.0 builds for G1 but last time I checked the camera wasnt working yet. On Jan 8, 11:05 am, Mark Murphy mmur...@commonsware.com wrote: DAVIDT wrote: I want to upgrade my G1, which is currently running on andriod 1.6, to andriod 2.0

[android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Mariano Kamp
Hi, this seems to be a very basic need, but googling it I got the impression that is not easily or elegantly solvable. The requirement is totally simple: I want to have a lite and pro version of an app. There is a little bit of difference between those two apps, but they are 99% identically.

[android-developers] dispatchTouchEvent

2010-01-08 Thread Business Talk
How can I programmatically press/release a button? I was playing with the button.dispatchTouchEvent(motionEvent); but failed to programmatically generate the MotionEvent to be passed to the dispatchTouchEvent -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: OpenGL fixed point vs. floating point

2010-01-08 Thread Frank Weiss
If there's no API, writing your own code is reasonable. On Jan 8, 2010 9:09 AM, Peter Eastman peter.east...@gmail.com wrote: Just render a small object using identical code except one is float and one is int, then time them... Unless a garbage collection happens to kick in during one of those

Re: [android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Frank Weiss
I've suggested using Eclipse project dependency, but haven't whether or not it works for Android projects. On Jan 8, 2010 10:15 AM, Mariano Kamp mariano.k...@gmail.com wrote: Hi, this seems to be a very basic need, but googling it I got the impression that is not easily or elegantly solvable.

Re: [android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Mark Murphy
Mariano Kamp wrote: Working around this ID issue the straight forward approach would be to have a third project with the common code that exports its code, libraries and in a best case scenario also the ressources to the other two objects. Unfortunately this doesn't work. Only the actual

[android-developers] Re: abort outgoing call

2010-01-08 Thread Gulfam
Hi Alejandro D. Garin, Reintiating call means when i setResultData(null); and after this i want to call at new number as Intent DialIntent = new Intent (Intent.ACTION_CALL,Uri.parse(3224005421));/**local number DialIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

[android-developers] Re: dispatchTouchEvent

2010-01-08 Thread Business Talk
I found the way to generate the MotionEvent, and it's MotionEvent.obtain On Jan 8, 1:15 pm, Business Talk roman.businesst...@gmail.com wrote: How can I programmatically press/release a button? I was playing with the button.dispatchTouchEvent(motionEvent); but failed to programmatically

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
Hi Gulfam, I'm doing exactly the same and it's working, at least in the emulator. And using sdk 2.0 api 6. This are my android permissions: uses-permission android:name=android.permission.RECEIVE_BOOT_COMPLETED / uses-permission android:name=android.permission.PROCESS_OUTGOING_CALLS /

Re: [android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Olivier Guilyardi
On 01/08/2010 07:15 PM, Mariano Kamp wrote: this seems to be a very basic need, but googling it I got the impression that is not easily or elegantly solvable. The requirement is totally simple: I want to have a lite and pro version of an app. There is a little bit of difference between those

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
I wrote the Uri parse different: Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: + NUMBER)); NUMBER is a constant with the new number to dial. On Fri, Jan 8, 2010 at 3:43 PM, Alejandro D. Garin aga...@gmail.com wrote: Hi Gulfam, I'm doing exactly

Re: [android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Dan Sherman
We had good luck with our latest project with just checking the package string. Naming the project xxx.xxx.project, and xxx.xx.project_lite And in our Activity subclass, checking for the package name, and setting a static variable for paid. Depends how much code needs to switch with

[android-developers] Re: How do I get full-sized image back from Camera using MediaStore.IMAGE_CAPTURE ?

2010-01-08 Thread MrChaz
As far as I know it's bugged and you can't get full resolution images via the intent. I ended up just creating my own camera activity. On Jan 8, 5:26 pm, Ray Benjamin ray.benja...@gmail.com wrote: Hi, I managed to figure out how to get the camara application to give me an image, but it is

[android-developers] Problem with Password Reset Captcha

2010-01-08 Thread Wong, Douglas
I was trying to post a response to a message, but I had forgotten my password. I clicked the link to reset my password. I filled in the information on the form and was presented with a captcha. Unfortunately the characters in the captcha were very hard to read and I couldn't enter the

[android-developers] Creating Comunal ShoutCasts Lib

2010-01-08 Thread ikalbeniz
Hi, Apparently nobody has published a Android Library to play ShoutCast streams.. there are particular developments but none of the OpenSource. So why don`t we develop our own library? I will post my first approach to the class and the community can post modifications till we get a functional

[android-developers] Android docs in an offline format

2010-01-08 Thread oregonduckman
I am looking for a source for all of the Android docs that can be read offline. It would be great if Google would publish their docs in a linked PDF or Kindle format or even the HTML in a zip file so an individual can reformat the docs themselves into PDF/Kindle. -- You received this message

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread Jack.Chu
apps more than 1MB is relatively very large on android. Maybe you can work around by put something on sd card. On Jan 8, 10:56 am, ian stilbit...@gmail.com wrote: The tourism related app I am completing has about 250 images for a total of maybe 15MB. I;d like to add another 100 or so images

[android-developers] To read XML file using xslt

2010-01-08 Thread prachi
Hii all I want to read XML file using XSLT concept and display it as a web page using webview. -- 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] Re: Multitouch support in Android 2.0

2010-01-08 Thread naya
I wonder about Pointer ID which is obtained using ACTION_POINTER_ID_MASK. Documentation says Pointer ID is not Array Index but ID, and Index can be found with findPointerIndex(ID). But when I examine source file(InputDevice.java), it looks like Array Index instead of ID as quoted below.

[android-developers] Re: ADT Plugin for Exlipse installation fails

2010-01-08 Thread Mike Butler
I've also had these exact same problems. It's also taking a very long time (10 minutes) for eclipse to download 1.6MB to figure out if it needs to update, even via the check connection button. On Jan 5, 9:59 am, Manimal scire...@gmail.com wrote: I added

[android-developers] Android Submission Guideline

2010-01-08 Thread Amit Mhatre
Hi Experts, Can you please suggest if there is any submission guideline suggested by android before app submission to market place. Do we need to do any level of testing? Thanks Amit Mhatre -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: ADB working with HTC Droid Eris?

2010-01-08 Thread Voted Most Popular
I installed the HTC sync from the HTC website that includes an ADB driver that works with the Eris. Remove the old driver and install HTCSync. On Dec 9 2009, 11:32 am, nethru lcapr...@gmail.com wrote: I got the same exact issue as original poster.  I tried what was on that unlockr site but it

[android-developers] Carnegie Mellon University seeks Android developers opinion

2010-01-08 Thread Mobile Survey CMU
We are conducting a survey of mobile application developers aimed at improving our understanding of mobile application development, focused on developer practices for building mobile applications. This is a research project, sponsored by the CyLab Mobility Research Center of Carnegie Mellon

[android-developers] Spinner questions

2010-01-08 Thread tonybse
Hello, I would appreciate if somebody can comment the questions below... - is there any way to read the spinner status (is it open or closed) ? - Is there any way to change the content of the spinner items without closing it? Currently, I can set a custom data adapter and show the spinner.

[android-developers] How much is the weight of the shipped box?

2010-01-08 Thread Mario Chacon
Hello, I'm from Argentina and I'm searching the weight of the Nexus Box, Could you tell me how much it is, please? I can't find it and I need to know before the ship. Thank you salu2... masch... -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Create Nexus One live wallpaper

2010-01-08 Thread bayeeblue
Hi, May I know are we able to create our own live wallpaper ? Thanks. Best Wishes Bayee -- 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] Audio Source for Speech Recognition

2010-01-08 Thread ScottH
When the RecognizerIntent is used with ACTION_RECOGNIZE_SPEECH, or ACTION_WEB_SEARCH for that matter, at what point does the invoked SR Activity capture the voice? To clarify, is the voice data right from the MIC (raw) or post-processed (VOICE_UPLINK)? I ask because with the new Nexus One makes

[android-developers] Android SDK emulator problem

2010-01-08 Thread ShadowReaper
Hello, When I start the emulator I get the following error: emulator: ERROR: no search paths found in this AVD's configuration. Weird, the AVD's config.ini file is malformed. Try re-creating it. Do you have any idea why this happens? I tried using several Target Names, downloading sdk again

[android-developers] How to disable Home and End Call Key

2010-01-08 Thread Abhi...
Hi, I am going to develop one application for android (As per client request). Which starts after booting of device. When device get booted then only this application will be there on screen. No key press will minimise that application. The solution i found on this site is able to block all keys

[android-developers] Re: Back ground of List View

2010-01-08 Thread risha
Hi, This is the command: android:background=#00 within a list view. ListView android:id=@+id/list android:background=#00 android:layout_width=wrap_content android:layout_height=wrap_content/ Regards, Risha On Jan 7, 2:54 pm, Ali Murtaza

[android-developers] Icons revisited

2010-01-08 Thread Petroleum Nasby
This is from an old thread, but I think a lot of people still have this problem, so new thread. On Nov 19, 11:59 pm, Dianne Hackborn (at Google) wrote: We don't recommend using the built-in icons. This has already been discussed fairly in-depth here, but the basic answer is: unless there is a

[android-developers] Android icon sometimes open new app sometimes brings up old

2010-01-08 Thread rackham
Hello, I have an android app which i have written, which exhibits some strange behaviour. When i have an app open, say with three acitivties in the stack A - B - C where a is the entry point and C is the currently viewed activity, if i press the home button and reselect the icon for my app

[android-developers] Re: Removing the stack of Activity

2010-01-08 Thread dharma
hi, one of the possible answers may be, you can launch the Activity2 on onClick event of the button in Activity5. and we dont have any options of removing any activities from .apk file. On Jan 7, 11:54 am, Beena swdeveloper2...@gmail.com wrote: Hi All, I have problem of removing activity. I

[android-developers] Re: Intent Call Action

2010-01-08 Thread prachi
Hi as per my understanding of the question intent can be used to launch any activity,service,brodcast receiver. The methods used for launching any activity component are: 1.startActivity(myIntent):-myintent is the Intent object containing descriptions about the activity to belaunched ad the

Re: [android-developers] Re: Enhancement to Emulator

2010-01-08 Thread Matt Oakes
I'll hold him still, you go for the head ;-) On Thu, Jan 7, 2010 at 7:29 PM, Disconnect dc.disconn...@gmail.com wrote: I do have a can opener.. :P On Thu, Jan 7, 2010 at 2:25 PM, David Turner di...@android.com wrote: On Thu, Jan 7, 2010 at 11:12 AM, Disconnect dc.disconn...@gmail.com

[android-developers] Offline SDK installation

2010-01-08 Thread Martins
Hello. I want to use Android SDK on Windows PC. Due to company policy regarding security, development machines are not connected to internet. Only different computer, running MacOSX, is connected to internet. How do I install Android SDK on Windows machine? When I run Android SDK on MacOSX, it

[android-developers] EditText.getText() not working

2010-01-08 Thread zosq
I am simple sudoku app. My main.xml has 81 EditText and 2 buttons as shown below. ?xml version=1.0 encoding=utf-8? RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=fill_parent android:layout_height=wrap_content

[android-developers] Re: How to transfer data with a successful bluetooth connection.?

2010-01-08 Thread Bastos
Seems that the Bluetooth API only allows p2p apps that both client and server has the same UUID: The string is an identifiable name of your service, which the system will automatically write to a new Service Discovery Protocol (SDP) database entry on the device (the name is arbitrary and can

[android-developers] Bouncycastle encryption algorithms and android

2010-01-08 Thread Reado
I'm trying to use BouncyCastle with android to implement ECDH and EL Gamal. I've added the bouncycastle jar file (bcprov-jdk16-144.jar) and written some code that works with my computers jvm however when I try and port it to my android application it throws:

[android-developers] Edinburgh design agency looking for local Android Developers

2010-01-08 Thread Phillip Lockwood-Holmes
Are you based in Scotland (or Edinburgh)? If so we are a design agency based in the West End of Edinburgh looking for a junior developer to prototype, develop and experiment with us on some pilot apps for our clients. For more info and to arrange a chat please send a CV with email outlining your

[android-developers] Re: How to best maintain two different versions of the same app?

2010-01-08 Thread fry
I have spent some time trying to solve the same task in different ways and at the 1st end came to 2 mostly identical projects variant and at the 2nd end came to even more simple solution as suggested above - I have 1 project for both basic and pro versions, and basic version can become pro version

  1   2   >