[android-developers] read user defined gmail data fields of android contact

2012-09-14 Thread Benjamin Buchner
I'm trying to read the fields which I added with google contacts to my contacts. I know that these fields get synced, because i can see it with an alternative contact viewer app. -Contact View by SoftWyer How could i query this data? Thanks in advance! -- You received this message because

Re: [android-developers] Re: hi

2012-09-14 Thread RichardC
Case sensitivity is a difficult problem when you might have non-English (ASCII) users. To the best of my knowledge I think that is it impossible to write an algorithm to perform a case-insensitive compare for the full UNICODE character set. I hope I am wrong, as it is something I would find

[android-developers] Re: Posts not showing up?

2012-09-14 Thread sly87
Same with me too.. :s On Thursday, September 13, 2012 1:29:27 PM UTC+2, Kunal Shah wrote: Same thing with me... On Thursday, September 13, 2012 2:56:47 PM UTC+5:30, Martijn van Mechelen wrote: Hi, Two days ago I've posted three messages into the Android Developers group. The

[android-developers] Re: Blueteeth

2012-09-14 Thread gjs
Hi, Yes 2 or 3 sometime 4 just once 5 ! Regards On Friday, September 14, 2012 7:30:37 AM UTC+10, bob wrote: So, has anyone ever gotten an Android Bluetooth server working that can handle multiple clients simultaneously? I looked at some old posts, and it seems this was a headache for

[android-developers] Matrix.orthoM - How to use it

2012-09-14 Thread Steven Bruce
I have a very simple application which draws a triangle at zero on the z axis. I want an orthographics view but for the life of me this function won't work. It just shows a black screen with no triangle. How exactly do you use this function? I did the obvious thing which is:

[android-developers] Re: Matrix.orthoM - How to use it

2012-09-14 Thread RichardC
See: android-sdk\samples\android-10\ApiDemos\src\com\example\android\apis\graphics\GLES20TriangleRenderer.java for Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7); which is similar. There is a lot of information out there on OpenGL projections, I suggest you read some of it. Note

[android-developers] Connections in android native phone book

2012-09-14 Thread akash
Hello, I am new to android programming. Can anyone guide me how can i add fields in Connections field of android native phone book. Thank you -- 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: Matrix.orthoM - How to use it

2012-09-14 Thread reaktor24
Hi Richard Thanks for your reply but I don't want to use frustumM I want to use orthoM. I want a 2D projection not 3D hence the -1 to +1. I have use frustumM and it works ok, I can see the triangle. What is the negative aspect ratio about? I don't understand that. It should really work like

Re: [android-developers] Matrix.orthoM - How to use it

2012-09-14 Thread Harri Smått
Hi, I'm usually doing the following (or the inverse); float ratio = (float) width / height; Matrix.orthoM(projection, -ratio, ratio, 1, -1, .1f, 100f); Especially using proper z -projection. -- H On Sep 14, 2012, at 11:25 AM, Steven Bruce stevebruc...@gmail.com wrote:

[android-developers] Re: Matrix.orthoM - How to use it

2012-09-14 Thread RichardC
The nice thing about frustumM and orthoM is that they take the same parameters :) They just produce different view transformations. The distance parameters (near and far) are the clip planes (which you still have in an orthographic projection) in front of the camera position (so they

[android-developers] Re: Matrix.orthoM - How to use it

2012-09-14 Thread reaktor24
Hi Thanks for your replies. So its not like the old glOrtho then? Ok, I will have a play with it later tonight and see how I get on. Ideally I would like the origin in the bottom left corner as that seems the most logical to me. Thanks again. Steve On Friday, September 14, 2012 10:19:45 AM

[android-developers] Updating progress bar in Application while downloading file using DownloadManager

2012-09-14 Thread vinay kumar
Hi All, I was wondering if anybody knew how to update progress Bar in the application while attempting to download file using download manager for android? Please share your ideas. Thank you in advance. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Updating progress bar in Application while downloading file using DownloadManager

2012-09-14 Thread ravi saini
use threading for updating the progress bar like first take the size of file and set that value to 100 of progress bar and every time just check how much data you got and update that value -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Blueteeth

2012-09-14 Thread Elvin
yes bob can handle up to 7 simultaneous connections. On Fri, Sep 14, 2012 at 5:30 AM, bob b...@coolfone.comze.com wrote: So, has anyone ever gotten an Android Bluetooth server working that can handle multiple clients simultaneously? I looked at some old posts, and it seems this was a

[android-developers] Handling Expensive Operations in the UI Thread

2012-09-14 Thread Amit Mangal
hi there, i have list fragment activity. my app is openingvery slow cause i am loading data from list view please any body have code to load it fast. -- 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] Testing IAP

2012-09-14 Thread New Developer
Hi All I'm looking at adding In App Purchases to my app, to allow for features to be unlocked I have downloaded and looked through the example code (Dungeons) My question is testing Am I correct in saying, that to test you have to actually purchase the item and then process a refund for

[android-developers] Re: Matrix.orthoM - How to use it

2012-09-14 Thread bob
I think it is like glOrtho. I found this on koders.com: public void glOrthof(float left, float right, float bottom, float top, float near, float far) { Matrix.orthoM(mMatrix, mTop, left, right, bottom, top, near, far); } I think maybe when you use glOrtho, the depth

[android-developers] Re: webview cookie sometimes null

2012-09-14 Thread emada.adame
it was my understanding the webview.load(url) would get the cookie, everything else is just to make sure the webview can accept cookies. Which it dose do some times and other not so much. What would you recommend? On Thursday, September 13, 2012 11:00:26 AM UTC-5, bob wrote: The issue is

[android-developers] Re: webview cookie sometimes null

2012-09-14 Thread bob
If you are calling Webview.loadUrl, *and* the URL is completely loaded, I would think the cookie would be there. On Friday, September 14, 2012 9:18:08 AM UTC-5, emada.adame wrote: it was my understanding the webview.load(url) would get the cookie, everything else is just to make sure

[android-developers] plz assign me any application i m free now a days !!!

2012-09-14 Thread Muhammad Sahil
hi All, Please assign me any application to develop, i m free now a days. Thanks Regards, Sahil -- 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

Re: [android-developers] plz assign me any application i m free now a days !!!

2012-09-14 Thread Raghav Sood
Write an app that hacks into the Google group servers and deletes messages like this one. Raghav Sood Sent from my Nexus 7 On Sep 14, 2012 8:28 PM, Muhammad Sahil muhammad.sahi...@gmail.com wrote: hi All, Please assign me any application to develop, i m free now a days. Thanks

[android-developers] Build Android support library independently

2012-09-14 Thread Roman Mazur
I believe there is a way to build Android support library independently. But I cannot figure it out. Currently I'm building using make in the root directory of Android projects. And it takes too much time... :) Thanks. -- You received this message because you are subscribed to the Google

Re: [android-developers] plz assign me any application i m free now a days !!!

2012-09-14 Thread spam tha man
Make an anus-cam-app with anus-recognition and enjoy it yourself. And On 9/14/2012 4:56 PM, Muhammad Sahil wrote: hi All, Please assign me any application to develop, i m free now a days. Thanks Regards, Sahil -- You received this message because you are subscribed to the

Re: [android-developers] plz assign me any application i m free now a days !!!

2012-09-14 Thread Muhammad Sahil
Thanks Raghav for your suggestion -- 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] Re: Build Android support library independently

2012-09-14 Thread RichardC
AOSP support groups are here: http://source.android.com/community/index.html On Friday, September 14, 2012 4:03:24 PM UTC+1, Roman Mazur wrote: I believe there is a way to build Android support library independently. But I cannot figure it out. Currently I'm building using make in the root

[android-developers] Re: Android USB to USB communication

2012-09-14 Thread dnk
anyone? On Thursday, September 13, 2012 5:07:37 PM UTC-7, dnk wrote: Android supports USB Host mode via its APIs but is there a library out there that takes care of the threading and communication? Can two devices use USB to pass arbitrary data, i.e chat messages? I've seen one for USB 2

[android-developers] Re: plz assign me any application i m free now a days !!!

2012-09-14 Thread bob
Make an Android tablet interface to Google Groups. On Friday, September 14, 2012 9:59:28 AM UTC-5, Muhammad Sahil wrote: hi All, Please assign me any application to develop, i m free now a days. Thanks Regards, Sahil -- You received this message because you are

[android-developers] Custom View

2012-09-14 Thread Jovish P
How to create a view like this (Please find the attached image) , which layout I want to use ? When we click on + button i need to change the text dynamically. Can you please share all your thought on how to do this ? Regards, Jovish -- You received this message because you are subscribed to

Re: [android-developers] Handling Expensive Operations in the UI Thread

2012-09-14 Thread Felipe Silveira
You need to use Loaders http://developer.android.com/guide/components/loaders.html or, if it is the case, an AsyncTask: http://developer.android.com/reference/android/os/AsyncTask.html Good luck On Fri, Sep 14, 2012 at 10:52 AM, Amit Mangal forum.amit.man...@gmail.comwrote: hi there, i have

[android-developers] Re: Custom View

2012-09-14 Thread RichardC
What have you already tried and how does it look? On Friday, September 14, 2012 5:05:38 PM UTC+1, Jovish P wrote: How to create a view like this (Please find the attached image) , which layout I want to use ? When we click on + button i need to change the text dynamically. Can you please

Re: [android-developers] Re: plz assign me any application i m free now a days !!!

2012-09-14 Thread nemi chhimpa
Video recording with image effect On Sep 14, 2012 9:02 PM, bob b...@coolfone.comze.com wrote: Make an Android tablet interface to Google Groups. On Friday, September 14, 2012 9:59:28 AM UTC-5, Muhammad Sahil wrote: hi All, Please assign me any application to develop, i m free

[android-developers] Multiple ViewPagers in one activity (bug in support library?)

2012-09-14 Thread Jethro Borsje
Hi fellow devs, I'm building an app using the v4 support library. My app has an activity which contains a grid of 4 ViewPagers ( http://developer.android.com/reference/android/support/v4/view/ViewPager.html) which in turn contain 3 fragments through which the user can swipe. My problem is that

Re: [android-developers] plz assign me any application i m free now a days !!!

2012-09-14 Thread Lew
Muhammad Sahil wrote: Thanks Raghav for your suggestion Excellent comeback. Your request is rather vague. First of all, in a discussion group no one actually assigns programming projects as such. The best translation you want is probably suggest. People here are probably glad to suggest

[android-developers] Re: Edi text default should keyboard caps

2012-09-14 Thread jagadeeshbabu
Hi All, Iam working on application which should get default keyboard is caps any one have idea please help for this how to approach EditText android:id=@+id/et_reg_firstname android:layout_width=350dp android:layout_height=wrap_content

[android-developers] Re: Edi text default should keyboard caps

2012-09-14 Thread RichardC
Try: http://developer.android.com/reference/android/widget/TextView.html#attr_android:capitalize On Friday, September 14, 2012 7:20:58 PM UTC+1, jags wrote: Hi All, Iam working on application which should get default keyboard is caps any one have idea please help for this how to

[android-developers] Does Android OS have APIs to support VoLTE (VoIP) call application?

2012-09-14 Thread Bo
Hi : I want to develop a VoLTE call application. However, I did not find any information about which android API I can use to develop it. May I know if Android OS have APIs to support VoLTE (VoIP) call application? Thank you! -- You received this message because you are subscribed to the

[android-developers] Re: plz assign me any application i m free now a days !!!

2012-09-14 Thread Andrea Pietroni
Good suggestion, I wonder why Google doesn't have one. Il giorno venerdì 14 settembre 2012 17:32:23 UTC+2, bob ha scritto: Make an Android tablet interface to Google Groups. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] App Review Question

2012-09-14 Thread ez
Hi Google Android team Our app (Expense Manager) has overall 4.6 rating. But there is a spam bad review on the top of review page for more than a couple of weeks now (and there is no way we can respond to it). This review damages the reputation of the app. Even if the review did represent one

Re: [android-developers] App Review Question

2012-09-14 Thread TreKing
Wrong forum. Try this: http://developer.android.com/support.html - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered devices -- You

[android-developers] Re: App Review Question

2012-09-14 Thread bob
*Are you talking about this review?* ** *Loose data* I am surprised to see so many 5 stars. I have lost data, you input expenses and afterwards you noticed it's no longer there. It's all a great app but simply you cannot trust it and what is the purpose of having an Expense manager if you

[android-developers] Re: Custom View

2012-09-14 Thread bob
Sounds like you want to use an ImageView and do a setOnTouchListener. On Friday, September 14, 2012 11:05:38 AM UTC-5, Jovish P wrote: How to create a view like this (Please find the attached image) , which layout I want to use ? When we click on + button i need to change the text

[android-developers] Re: plz assign me any application i m free now a days !!!

2012-09-14 Thread Lew
The browser doesn't count? On Friday, September 14, 2012 12:17:49 PM UTC-7, Andrea Pietroni wrote: Good suggestion, I wonder why Google doesn't have one. Il giorno venerdì 14 settembre 2012 17:32:23 UTC+2, bob ha scritto: Make an Android tablet interface to Google Groups. -- You

Re: [android-developers] Blueteeth

2012-09-14 Thread bob
Are you talking about with an Android device as the server? Or have you tried using a desktop as the Bluetooth server? I have 4 connected to a desktop with no issues right now. On Thursday, September 13, 2012 4:37:57 PM UTC-5, Kristopher Micinski wrote: only up to two or three, never

[android-developers] Re: App Review Question

2012-09-14 Thread Lew
Don't you know that to an app developer, any negative review is spam by definition, and only five-star reviews are valid? -- Lew bob wrote: *Are you talking about this review?* *Loose data* I am surprised to see so many 5 stars. I have lost data, you input expenses and afterwards you

[android-developers] Re: App Review Question

2012-09-14 Thread ez
Even if it's not a spam review, this review posted on Aug 28, 2012 and stayed on the No 1 review until today. There are other reviews good or bad. Why don't you show those reviews too. Why your search engine keeps displaying something against the developers who work very hard to make Android a

[android-developers] Re: App Review Question

2012-09-14 Thread Lew
On Friday, September 14, 2012 1:41:05 PM UTC-7, ez wrote: Even if it's not a spam review, this review posted on Aug 28, 2012 and stayed on the No 1 review until today. There are other reviews good or bad. Why don't you show those reviews too. Why your search engine keeps displaying

Re: [android-developers] Re: plz assign me any application i m free now a days !!!

2012-09-14 Thread Jim Graham
On Fri, Sep 14, 2012 at 12:17:49PM -0700, Andrea Pietroni wrote: Make an Android tablet interface to Google Groups. Good suggestion, I wonder why Google doesn't have one. Well, maybe google doesn't, specifically, but Android does. Here are a few examples: 1) K-9 Mail 2) Gmail 3)

[android-developers] Des Serialize file in android

2012-09-14 Thread Carlos Calvo
I have a fairly rare issue. I have a fext file to parse and generate a model android data (there are three classes) and serialized to file. This is done in android application project I have. With myself from my mobile application deserialized the file correctly. Instead try to do this in

[android-developers] Android App Previews (Honeycomb and above)

2012-09-14 Thread Artur Amaral
Good Afternoon, I currently work as a project manager for a mobile development group at a major financial institution. My question is regarding the app preview when the recent apps button is pressed in android 3.0 and above. My question is an important one and I have yet to see it addressed

[android-developers] Multiplayer Multiple Choice Android

2012-09-14 Thread Abedalqader Omar
Dear All, I plann to create application is a real time multiplayer multiple choice game. It will have a pool of approximately 600 questions that will be randomly selected for every game. Games will start on a rolling basis, consisting of 10 players at a time who must answer 20 questions per

[android-developers] Combine two android apps

2012-09-14 Thread addy12
Hi Experts, I have developed two Android apps. I need to combine both the apps into a single Apk file in such a way that the output of the first app should be given as the input to the second app. Any pointers on how to achieve this?? Regards, Addy -- You received this message

[android-developers] Re: Build error - sun/security/x509/X500Name

2012-09-14 Thread ajml
Hey I am getting the same error. Could you please talk in detail about what exactly you did to solve the problem? I am bit new and not able to figure out what you said here. Aj On Friday, February 25, 2011 2:12:39 PM UTC-5, Ofguard wrote: Solved. make sure the default java on the system in

Re: [android-developers] Re: How do I set up the project in the Android site's “Managing the Activity Lifecycle” training exercise?

2012-09-14 Thread AJ
^Like. XD On Saturday, June 30, 2012 11:01:54 AM UTC-7, Nobu Games wrote: On Saturday, June 30, 2012 12:46:23 PM UTC-5, TreKing wrote: Again, if you explain the actual errors you are getting, you'll likely get more help. Asking for step-by-step anything usually falls on deaf ears.

[android-developers] Exporting text to pdf format?

2012-09-14 Thread Arathon
I intend on creating an android application where the user inputs text into a text box, and captures a photo. Is it possible to save and export this as a pdf, where the text will appear at the top of the pdf page and the image appears below it(or on the next page). Thanks -- You received

[android-developers] Using the android logo in an application

2012-09-14 Thread Arathon
When creating an app, are we able to use the Android logo and the Android name? What about modifications to the logo and name?? 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] capture video frames from mobile to PC

2012-09-14 Thread AMITCH
Hi Everyone, I am a MFC Windows Application developer. I what to develop an application on windows by which user can view a video which is running on his android mobile on windows PC simultanously, while mobile is connected by USB cable. I surf net lot of times but there is no relevent content

[android-developers] Explain the goemetrial concept behind this, please!!

2012-09-14 Thread Andrea Pietroni
Negative scale numbers mirror the image. It looks like it's drawing the picture (half scaled) 4 times: - first time top left - then at its right and mirroring accordingly - etc -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Tabs fragments and split view

2012-09-14 Thread Balky
Hi, I know it says clearly if you are new in Android, ask Stack owerflow but, when you do that you get negative votes there and lot of smart heads is giving you hard time :)) Not always, but. What I need to do is get view that looks closest to Google Play app when open on certain

[android-developers] I can not see the stats on my console

2012-09-14 Thread boali dashtestani
hi I am trying to see the sales report on my Google account,and I am unable to do it,for some reason it is not showing up any more. thanks any ideas? thanks in advance -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: Merging two activities that is SMS and LBS

2012-09-14 Thread ARNAB PAL
can you please share your code with me. my email id is arnabpal...@gmail.com On Wednesday, 21 December 2011 23:23:11 UTC+5:30, Mehdi Rizvi wrote: Actually im merging two different activities that is SMS and LBS.. My first Activity is getting latitude and Longitude of a current position of

[android-developers] How to get total number of application installed in a android phone???

2012-09-14 Thread Md. Naushad Alam
I have two problem??? 1. If there are 20 app install in a android device then how i get this number. Is there any function or method? 2. How much space is used by an application??? How i get this ?? Is there any function or method??? Thanks in advanced Naushad -- You received this

[android-developers] How app work in sqllite

2012-09-14 Thread Jack
how to use sqlLite in 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 this group, send email to

Re: [android-developers] Android App Previews (Honeycomb and above)

2012-09-14 Thread TreKing
On Thu, Sep 13, 2012 at 2:04 PM, Artur Amaral aamaral...@gmail.com wrote: My question is an important one and I have yet to see it addressed anywhere in any developer blogs: Is there a way to display a default image or something other than the final screenshot in the app preview window?

Re: [android-developers] Using the android logo in an application

2012-09-14 Thread TreKing
On Thu, Sep 13, 2012 at 5:30 AM, Arathon amcd2...@gmail.com wrote: When creating an app, are we able to use the Android logo and the Android name? What about modifications to the logo and name?? http://developer.android.com/distribute/googleplay/promote/brand.html

[android-developers] Re: Updating progress bar in Application while downloading file using DownloadManager

2012-09-14 Thread bob
Sounds like a job for an AsyncTask. On Friday, September 14, 2012 4:56:15 AM UTC-5, Vinay Kumar wrote: Hi All, I was wondering if anybody knew how to update progress Bar in the application while attempting to download file using download manager for android? Please share your ideas.

Re: [android-developers] Re: plz assign me any application i m free now a days !!!

2012-09-14 Thread Lew
Spooky wrote: Pietroni wrote: Make an Android tablet interface to Google Groups. Good suggestion, I wonder why Google doesn't have one. Well, maybe google doesn't, specifically, but Android does. Here are a few examples: 1) K-9 Mail 2) Gmail 3) Mail 4) the

[android-developers] Re: Rotate image around it's centre problem with matrix rotation

2012-09-14 Thread bob
Yes, I ran it. It works fine if you make the change I told you to make: *change this:* * * *Y = initialY;* * * *to this:* * * * Y = (int) (screenH /2) - (arrowH / 2) ;* On Thursday, September 13, 2012 11:57:24 PM UTC-5, Haris wrote: Hai bob, have you run my code..? On Monday, 10

Re: [android-developers] Multiplayer Multiple Choice Android

2012-09-14 Thread TreKing
On Thu, Sep 13, 2012 at 4:19 AM, Abedalqader Omar abedalqader1...@gmail.com wrote: what i need exactly: 1. Player has to choose a room from the lobbay to enter a game. 2. The player waits until thier selected room reaches 10 people. at that point, the game will start. 3. within the game,

Re: [android-developers] Combine two android apps

2012-09-14 Thread TreKing
On Thu, Sep 13, 2012 at 4:00 PM, addy12 adikna1...@gmail.com wrote: I need to combine both the apps into a single Apk file in such a way that the output of the first app should be given as the input to the second app. That doesn't really make sense. Can you clarify?

Re: [android-developers] Exporting text to pdf format?

2012-09-14 Thread TreKing
On Thu, Sep 13, 2012 at 5:02 AM, Arathon amcd2...@gmail.com wrote: Is it possible to save and export this as a pdf, where the text will appear at the top of the pdf page and the image appears below it(or on the next page). Is it possible? Probably.

Re: [android-developers] How to get total number of application installed in a android phone???

2012-09-14 Thread TreKing
On Thu, Sep 13, 2012 at 6:40 AM, Md. Naushad Alam buet.na...@gmail.comwrote: 1. If there are 20 app install in a android device then how i get this number. Is there any function or method? 2. How much space is used by an application??? How i get this ?? Is there any function or method???

Re: [android-developers] I can not see the stats on my console

2012-09-14 Thread TreKing
On Wed, Sep 12, 2012 at 8:27 PM, boali dashtestani bdb...@gmail.com wrote: hi I am trying to see the sales report on my Google account,and I am unable to do it,for some reason it is not showing up any more. thanks any ideas? Direct your question to the correct forum:

Re: [android-developers] How app work in sqllite

2012-09-14 Thread TreKing
On Thu, Sep 13, 2012 at 7:06 AM, Jack buet.na...@gmail.com wrote: how to use sqlLite in android??? How to read the documentation??? - TreKing http://sites.google.com/site/rezmobileapps/treking -

Re: [android-developers] eclipse.exe has stop working

2012-09-14 Thread TreKing
On Fri, Sep 14, 2012 at 4:26 PM, laxman k laxman.k1...@gmail.com wrote: hi...frds WTF is a frds? when i am open eclipse it show eclipse.exe has stop working I'm sorry to hear that. how this problem slove.. What is a slove? If you need help with your broken Eclipse, try a group

[android-developers] Re: Combine two android apps

2012-09-14 Thread bob
Sounds like you will have two Activity classes. Then you will call startActivity to start the second one. And, you will pass the output of the first one as an extra to the second activity. On Thursday, September 13, 2012 4:00:35 PM UTC-5, addy12 wrote: Hi Experts, I

[android-developers] android Google Maps api MapActivity panning causes program to act irratic

2012-09-14 Thread TheRring
I followed the developers MapView tutorial here: https://developers.google.com/maps/documentation/android/hello-mapview The map works till i try to pan, the app starts clicking things i never clicked, pans too far(into ocean or another country) and when i exit, the touch function of my Android

[android-developers] Re: Using X509 certificate in android application

2012-09-14 Thread Piyush Gupta
Hi all, I want to make a install a client certificate on my device which will be used to authenticate my device's id to a HTTP(not HTTPS) server. I have a valid client certificate which I can install on my device manually but cannot detect the certificate . Please help me in verifying the

[android-developers] how to caculate all cpu useage in logcat ANR info?

2012-09-14 Thread david
Hi All, now i meet a ANR error. i find the cpu usage info in loacat totaly big than 100%,so i cofused, wheo can guide me on this issue? or provide some docment or link? thanks a lot! david -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Android 4.0 WebView With Certificates Problem

2012-09-14 Thread Piyush Gupta
Hi deepam I am also facing similar issues. IF you have found any solution then please post it here . On Wednesday, August 22, 2012 7:29:09 PM UTC+5:30, deepam trivedi wrote: Hi, Im trying to use a web view to load a https url that requires ssl authentication. I can get my certificates

[android-developers] Eclipse error using numberpassword inputtype

2012-09-14 Thread Dazed Dev
Hi! I want to use numberpassword type but eclipse is returning an error String types not allowed (at 'inputType' with value 'numberpassword'). What is the reason for this and how do I resolve it? My platform target in the Graphical Layout and the build is 4.1. Thanks in advance. -- You

[android-developers] Protocall erros

2012-09-14 Thread KC Raju Vysyaraju
Hi all, may i know the reason for following Exception?? * * * java.io.IOException: Error connecting...java.net.MalformedURLException: Unknown protocol: market* *at com.gameloft.android.ANMP.GloftWBHM.Game.GetHttpConnection(Unknown Source)* *at

[android-developers] Re: Video (VideoView) flickering and/or doesn't display on ICS (but works fine on Android = 2.x)

2012-09-14 Thread Spirit
Hey Mathias, I am facing the similar issue on my Nexus s running ICS on it. Could you find out the exact reason behind this behavior? If yes can you please share it with me? Thanks in advance, Spirit On Monday, May 7, 2012 12:04:17 PM UTC+5:30, Mathias Lin wrote: I have an app with a

[android-developers] Re: Accelerometer not working when screen turns off

2012-09-14 Thread Detroit Tea
Partial wake lock doesn't work for me either. SCREEN_DIM_WAKE_LOCK works. I'm using a Cliq XT running CM7. On Wednesday, August 25, 2010 3:38:25 AM UTC-7, Furiaceca wrote: Hello, I tried few days ago with my HTC Desire and the official Froyo release ... but when the screen is off the

[android-developers] Re: Access denied error while trying to install new API

2012-09-14 Thread Harry Alffa
I was logged in as the administrator, still had the same problems of access denied. I'm amazed that while logged on as admin, with no other user accounts logged on, right-clicking on SDK Manager.exe and running as Administrator makes a difference, but it does! Bugger me! I'm guessing this is a

[android-developers] Using APKExpansionPolicy

2012-09-14 Thread Etwas
Hi! I have ported free game app using marmalade. My task is to download APK Expansion Files. By some reasons I cant use *Downloader Lybrary*, because downloading has been written and all what I need is to get link to the APK Expansion files. Page

[android-developers] Re: Completely disable Soft Keyboard from EditText

2012-09-14 Thread Favas
**Try this one, works fine for me:** public class CustomEdittext extends EditText { Boolean mIsTextEditor=true; public CustomEdittext(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } @Override public boolean onCheckIsTextEditor() { //

[android-developers] Re: GPS_EVENT_SATELLITE_STATUS called alot

2012-09-14 Thread dilipvrk
According to the documentation ( http://developer.android.com/reference/android/location/GpsStatus.html#GPS_EVENT_SATELLITE_STATUS ) this event is sent periodically. On Thursday, November 5, 2009 12:52:19 AM UTC+5:30, WoodManEXP wrote: Has anyone noticed that onGpsStatusChanged for event

[android-developers] Android ICS and OpenGl ES 2.0 issue

2012-09-14 Thread HelectronSoft AppsandMore
i develop live wallpapers using Opengl ES 2.0 engine. My wallapapers run smooth on 2.x Android Devices , but in 4.03 i see some strange things. on 1st create everything goes fine , but if i change orientation or on off screen , opengl goes out of memmory (1285 error) I noticed something weird

[android-developers] Android LVL

2012-09-14 Thread janvi
Dear All I need a favour,though it is old topic i need small info on how to go a head with Android LVL Plz reply me as soon as possible The following is my sample code which I have written package com.example.helloworld; import java.io.FileInputStream; import java.io.FileNotFoundException;

[android-developers] Re: Android Licensing LVL

2012-09-14 Thread janvi
Hi All Sorry for interrupting but I need this info urgently so Plz anybody help me out here I need a small info on how to start with Android LVL The following is my code package com.example.helloworld; import java.io.FileInputStream; import java.io.FileNotFoundException; import

[android-developers] Special Accommodations for Non-Profits?

2012-09-14 Thread Jesse R
Hi all, I have not been able to find much documentation online so I figured I'd turn to the forum. Does anyone know about any special cases that are in places for Apps built by and for non-profits? Does the 70/30 transaction fee still apply? Thanks, Jesse -- You received this message

[android-developers] Documents to Go Ap

2012-09-14 Thread John
Does anyone know if there's some sort of user's guide or something to tell mke how the Documents to Go ap works on android...full version? 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] is onActivityResult beeing not called when big amounts of data shall be passed

2012-09-14 Thread madMF
Hi, i am tracking down a problem I can't really understand. Maybe some one knows why this happens. Basicly Activity A starts Activity B to take a photo by calling startActivityForResult(...) in A and setResult(...,outputIntent) in Activity B. B is just a camerapreview with the ability to take

[android-developers] Re: Tons of error trying to build ADWLauncher

2012-09-14 Thread maleto
galapogos!!! I have the same problems... Did you find a solution?¿ El lunes, 4 de junio de 2012 09:40:55 UTC+2, galapogos escribió: I'm trying to build ADWLauncher, but I'm getting a ton of compiler errors in Eclipse SDK 3.7.1 in a Win7 32bit PC with JDK7. I imported ADWLauncher to Eclipse.

[android-developers] Re: NDK Development with Objective-C 2.0

2012-09-14 Thread James
Philippe, Thank you for creating this post. If I wanted to write an app for android in entirely objective-c, could I? On Thursday, January 21, 2010 9:12:53 PM UTC-5, Philippe Hausler wrote: I had started a thread over at the android-porting group, and figured it might be a better venue

[android-developers] Including framework which was made in an other project in eclipse

2012-09-14 Thread Michael Kolodziej
Hi, I'm going through the book Beginning Android Games by Mario Zechner. For those who don't know it, it describes how to develop a gaming framework, the implementation of the framework and finally some example games which use this framework. Now theres one thing which gives me headaches. I

[android-developers] iButterfly philippines -- (android version) how to create?

2012-09-14 Thread meridroid
hello masters.. I'm on the move of creating an android version of iButterfly from iOS. i really need help on creating this game. concepts and ideas on how to fulfill this app would be very helpful. also if you have any suggestions to make it better, i would be glad to know. thank you! so far, i

[android-developers] Re: Animating the ExpandableListView

2012-09-14 Thread Lefteris Kororos
I have tried so hard to find a way to do it, howver have not managed to find something yet. Any help would be appreciated. It would really add a very nice touch to the expandablelistview. Thanks, Lefteris Τη Τετάρτη, 3 Νοεμβρίου 2010 1:07:58 π.μ. UTC+4, ο χρήστης Akom έγραψε: I really

[android-developers] Can I install our app from an APK and then update it with Google Play?

2012-09-14 Thread Martin Ellison
What I want to do is to install our app via an APK, but to push updates using Google Play. Is there any way to tie the two, so that Play can recognise that the app has been installed from an APK file, and can then deliver app upgrades? We are developing the app for our users, and we anticipate

[android-developers] SDK manager doesn't show, not installed packages

2012-09-14 Thread Max Ganiyev
https://lh5.googleusercontent.com/-IAABz-wigqU/UFMI1s8P2bI/AIM/H3TBXnIdg7M/s1600/screen.jpg How to show 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-developers@googlegroups.com

  1   2   >