Re: [android-developers] WAV file

2012-12-06 Thread Michael Banzon
As far as I can recall the problem with wave files is that they are envelope for other formats. If I remember correctly they can contain just about anything which codec are you looking to in code where are you going to play the file you record? -- Michael Banzon http://michaelbanzon.com/ On Dec

Re: [android-developers] hi friends

2012-12-06 Thread sree android
Thank you sir,i am ur student. -- 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] MasterDetailFlow ADT and OpenGL

2012-12-06 Thread Frode
Hi, I need a master/detail implementation with a list of 3D-model files on the left and an OpenGL-detail-view on the right. The MasterDetailFlow ADT seems to be a good starting point. But how can I configure this template to draw OpenGL in the detail window? Some thoughts; Is it possible to

[android-developers] SlidingDrawer from left to right

2012-12-06 Thread Dmitriy F
Hi, I've got no idea why subj isn't implemented but I urge to rewrite this piece of codehttp://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/1.5_r4/android/widget/SlidingDrawer.java. Is there any substanital reason why it hasn't been implemented ? So that if

[android-developers] Android get web data and output to usb

2012-12-06 Thread Antonis Kanaris
I want to make an application to get web data and out to usb every x secs.I make it for output to bluetooth.For get web data i use AsyncTask and timer for repeat.I found this for usb http://allaboutee.com/2011/12/31/arduino-adk-board-blink-an-led-with-your-phone-code-and-explanation/How i

[android-developers] App disappearing from my user's phones after update with preferExternal install location in Manifest

2012-12-06 Thread Paul
Here's my question on Stackoverflowhttp://stackoverflow.com/questions/13727001/app-mysteriously-disappearing-from-phone discussing the problem (no answers yet so posting here). I have workarounds that I can give to users that email me, so not looking for that. Can anybody tell me what is

[android-developers] Re: App disappearing from my user's phones after update with preferExternal install location in Manifest

2012-12-06 Thread RichardC
Is it the app disappearing or a widget from the app? Also have a read of: http://android-developers.blogspot.co.uk/2011/06/things-that-cannot-change.html On Thursday, December 6, 2012 1:54:04 PM UTC, Paul wrote: Here's my question on

[android-developers] Re: android phones and bluetooth

2012-12-06 Thread bob
What's the point of connecting to a GPS by Bluetooth when almost all Androids have GPS already? On Wednesday, December 5, 2012 7:19:30 PM UTC-6, dashman wrote: do most android phones support the bluetooth serial profile. specifically - gps data access. how would i know whether the

[android-developers] Re: MasterDetailFlow ADT and OpenGL

2012-12-06 Thread bob
Yes, GLSurfaceView can be used in a subsection of the screen. I have a GLSurfaceView and an Admob view in my app. On Thursday, December 6, 2012 5:57:26 AM UTC-6, Frode wrote: Hi, I need a master/detail implementation with a list of 3D-model files on the left and an OpenGL-detail-view on

[android-developers] EffectFactory effects under the hood

2012-12-06 Thread bob
Does anyone know what most of the EffectFactory effects are like under the hood? Are they basically GLSL shaders? -- 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

[android-developers] Required: Sr. NET Developer at Santa Clara, CA

2012-12-06 Thread Munawar Ali
Hi Friend, Hope you are doing good. Please let me know if you have someone for the below mention requirement… Please send resumes on m...@tekenergyusa.com *Position: Sr. ASP.NET Developer* *Location: Santa Clara, CA* *Duration: 6 Months Contract* *Start Date: Monday December 10th* *Interview

Re: [android-developers] Don't mix Ant and Eclipse!

2012-12-06 Thread moose
Kostya, could you give us some details on how you did that? I run ant and eclipse side by side and run into issues where I need to do clean rebuilds in one after I had worked in the other. It can be annoying. On Friday, May 11, 2012 5:17:09 AM UTC-4, Kostya Vasilyev wrote: Jacob, Eclipse

[android-developers] Design Questions about Spinners and Localized Values

2012-12-06 Thread Mark Phillips
I have more of a design question than a specific question about a piece of code. In my application, the user has to select the correct units from a spinner for data that he or she inputs into some text boxes. By units, I mean length (feet, meters, etc), mass (grams, slugs, etc.), temperature

[android-developers] Creating data files as compiled (binary) xml

2012-12-06 Thread Simon Giddings
I am developing a tablet application where I want my data files to be stored as compiled xml. The application will not, itself, be creating these files. These files will be added at a later stage - the user will be able to purchase them separately. So, my question is, how can I create the

Re: [android-developers] Creating data files as compiled (binary) xml

2012-12-06 Thread Mark Murphy
On Thu, Dec 6, 2012 at 11:27 AM, Simon Giddings mr.s.giddi...@gmail.com wrote: I am developing a tablet application where I want my data files to be stored as compiled xml. Why? Furthermore, what do you consider compiled xml to be? If you are referring to the binary XML format created by the

Re: [android-developers] Design Questions about Spinners and Localized Values

2012-12-06 Thread TreKing
On Thu, Dec 6, 2012 at 10:18 AM, Mark Phillips m...@phillipsmarketing.bizwrote: I initially thought to just put arrays in strings.xml for the various units (length, mass, temperature, etc) to simplify the code and translations. However, I end up with a lot of string testing to see which unit

Re: [android-developers] Re: android phones and bluetooth

2012-12-06 Thread Fred Niggle
Maybe he wants to log his position while driving... there are lots of uses... On 6 December 2012 15:19, bob b...@coolfone.comze.com wrote: What's the point of connecting to a GPS by Bluetooth when almost all Androids have GPS already? On Wednesday, December 5, 2012 7:19:30 PM UTC-6,

Re: [android-developers] Don't mix Ant and Eclipse!

2012-12-06 Thread Latimerius
Try putting out.dir=your_ant_bin_directory in ant.properties or build.properties (one is old and the other is new, I always forget which is which). With this set I never had a problem with a corrupted build, although I do find that Eclipse builds fail to update the generated Build class. That

[android-developers] Re: App disappearing from my user's phones after update with preferExternal install location in Manifest

2012-12-06 Thread Paul
It's not a widget. All that has changed of relevance in manifest is this: android:installLocation=preferExternal (where previously it was not specified). Here is one email from a user: my icon was greyed out and got message saying it was not installed. I went to the play store and downloaded

Re: [android-developers] Creating data files as compiled (binary) xml

2012-12-06 Thread Simon Giddings
Hi Mark, Why - to create my data files - sheet music data - and distribute them in a fairly protected manner. Yes, I am indeed referring to the xml binary format used by the build process. On Thursday, 6 December 2012 17:33:40 UTC+1, Mark Murphy (a Commons Guy) wrote: On Thu, Dec 6, 2012 at

[android-developers] Re: App disappearing from my user's phones after update with preferExternal install location in Manifest

2012-12-06 Thread Nobu Games
This used to happen quite often on my old Samsung Galaxy S with any app installed on the SD card. It sometimes took a restart and even purging the cache partition from the hidden boot maintenance menu in order to get these icons back. Sometimes the icons would re-appear again without doing

Re: [android-developers] Re: android phones and bluetooth

2012-12-06 Thread dashman
any links to code fragments to talk to a bluetooth gps - serial profile. i'm familiar with NMEA etc. re the poster as to why? there's always out of the norm applications. my man reason is to get data at a faster rate than delivered by the builtin gps units. -- You received this message

[android-developers] Re: App disappearing from my user's phones after update with preferExternal install location in Manifest

2012-12-06 Thread Paul
Thanks Nobu Games, but I'm not worried about what to tell customers (got that covered), I'm worried about how to fix the problem or make sure the fewest users are affected. In other words, does it make sense to deploy another update with installLocation=auto. Does that improve matters? What

[android-developers] Re: android phones and bluetooth

2012-12-06 Thread lbendlin
Many Android tablets do not have GPS, but they have Bluetooth. On Thursday, December 6, 2012 10:19:15 AM UTC-5, bob wrote: What's the point of connecting to a GPS by Bluetooth when almost all Androids have GPS already? On Wednesday, December 5, 2012 7:19:30 PM UTC-6, dashman wrote: do

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-06 Thread lbendlin
Is anyone here concerned about the need for OpenGL v2? Doesn't that exclude a lot of devices from being able to run the new maps? On Monday, December 3, 2012 10:13:08 PM UTC-5, JP wrote: I started migrating an Android project from the old Google Maps API to v2. Or an attempt at that, rather.

[android-developers] NVIDIA sample missing?

2012-12-06 Thread bob
Can someone please take a look at this page and let me know if the last comment is correct: http://stackoverflow.com/questions/6414003/using-surfacetexture-in-android It says: NVIDIA has a full and working sample in their TEGRA Android Developer pack. The sample is written pure Java and runs

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-06 Thread RichardC
90% support OpenGL ES 2.0 http://developer.android.com/about/dashboards/index.html (last item) On Thursday, December 6, 2012 8:10:54 PM UTC, lbendlin wrote: Is anyone here concerned about the need for OpenGL v2? Doesn't that exclude a lot of devices from being able to run the new maps? On

[android-developers] Re: NVIDIA sample missing?

2012-12-06 Thread bob
I think he's talking about this one: ar_base AR Base is an example of using OMX AL to route a live camera feed to both a 3D texture and an application-accessible buffer stream. It allows for basic Augmented Reality rendering and tracking. Detailed documentation may be found in the demo’s

Re: [android-developers] Design Questions about Spinners and Localized Values

2012-12-06 Thread Mark Phillips
It has to do with one of my requirements to allow the user to specify in the app's preferences to display only a subset of the units. If I pick SI (System International), then all I get are meters, kilograms, Newtons, degrees C, etc. If I specify English, then I get feet, slugs, pounds, and

Re: [android-developers] Design Questions about Spinners and Localized Values

2012-12-06 Thread TreKing
On Thu, Dec 6, 2012 at 3:21 PM, Mark Phillips m...@phillipsmarketing.bizwrote: Perhaps I am over thinking this? Perhaps. I'm having a hard time following with just your description. If you could share some examples of how you're structuring things, in code and / or xml, or show some

Re: [android-developers] Re: When can every developer reply to reviews?

2012-12-06 Thread Ian Ni-Lewis
Hey all, You're right that Google rarely if ever shares release dates or promises new features, and this post won't be any exception. I can say, though, that we met with the PM in charge of the Play pubsite yesterday, and had a great discussion about how to improve the review and feedback

[android-developers] google maps not showing

2012-12-06 Thread John Merlino
I updated an android app but the original developers are not available so I had to create a new app on the android market. But it was generally the same app. It contains a google map. However, the google map does not render. I am getting messages like this on the log: Couldn't get connection

[android-developers] displaying tips

2012-12-06 Thread dashman
I've got an app that displays a list - ScrollView. Every once in a while I'd like to display tips to the user. I've seen apps where an animation gets displayed on top of the main app and then disappears. Any pointers in the right direction would help. I'm thinking a small text box slides in

Re: [android-developers] google maps not showing

2012-12-06 Thread TreKing
On Thu, Dec 6, 2012 at 3:43 PM, John Merlino stoici...@aol.com wrote: Do I already have an apikey in the developer console somewhere or is this something I am going to have to create? Please read the documentation.

[android-developers] In-App billing draft apk not appearing in Developer Console

2012-12-06 Thread jb
Hi, I'm trying to test In-App billing on my app. I registered a test account in my Google Play account. I uploaded a new, signed apk as an unpublish draft (I uploaded and saved, but did not publish) The VersionCode is greater than the published apk (49 vs 48) The VersionName is different than

[android-developers] Re: App crash report - InputChannel - could not read input channel file descriptors from parcel.

2012-12-06 Thread William Ferguson
I know this is a *really* old thread now, but there is a credible issue raised for it. http://code.google.com/p/android/issues/detail?id=32470 So those that are experiencing it can go and star if you want to add your weight to getting it noticed and fixed. William On Monday, October 3,

[android-developers] Changing from Checkbox to Switch controls

2012-12-06 Thread dashman
I've got Preference screens that use Checkboxes right now. I'd like to move to Switches for a more consistent UI. I understand Switch is api14+ - so i have to use ToggleButton before that. How do i support all api levels. Different preference screens based on api version??? Since both the

[android-developers] Re: In-App billing draft apk not appearing in Developer Console

2012-12-06 Thread MathieuB
Are you using the new or old developer console? I've noted some functionality missing in the new interface. On Thursday, December 6, 2012 5:55:01 PM UTC-5, jb wrote: Hi, I'm trying to test In-App billing on my app. I registered a test account in my Google Play account. I uploaded a new,

[android-developers] Re: In-App billing draft apk not appearing in Developer Console

2012-12-06 Thread jb
I'm using the old developer console. On Thursday, December 6, 2012 5:16:48 PM UTC-8, MathieuB wrote: Are you using the new or old developer console? I've noted some functionality missing in the new interface. On Thursday, December 6, 2012 5:55:01 PM UTC-5, jb wrote: Hi, I'm trying to

[android-developers] Re: In-App billing draft apk not appearing in Developer Console

2012-12-06 Thread jb
I'm using the old developer console. jb -- 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] In-App billing draft apk not appearing in Developer Console

2012-12-06 Thread Nikolay Elenkov
On Fri, Dec 7, 2012 at 7:55 AM, jb cona...@gmail.com wrote: Hi, I'm trying to test In-App billing on my app. I registered a test account in my Google Play account. I uploaded a new, signed apk as an unpublish draft (I uploaded and saved, but did not publish) The VersionCode is greater than

Re: [android-developers] In-App billing draft apk not appearing in Developer Console

2012-12-06 Thread jb
Don't I need the draft present to add the IAP entry. Or do I add that to the existing published apk? On Thursday, December 6, 2012 5:22:10 PM UTC-8, Nikolay Elenkov wrote: On Fri, Dec 7, 2012 at 7:55 AM, jb con...@gmail.com javascript: wrote: Hi, I'm trying to test In-App billing

Re: [android-developers] In-App billing draft apk not appearing in Developer Console

2012-12-06 Thread Nikolay Elenkov
On Fri, Dec 7, 2012 at 10:29 AM, jb cona...@gmail.com wrote: Don't I need the draft present to add the IAP entry. Or do I add that to the existing published apk? Not sure what you mean? The draft APK needs to be there, it just won't show up on the main screen. -- You received this message

[android-developers] AdMob House Ads

2012-12-06 Thread John Coryat
I know this probably isn't the best place to ask this but I haven't found another... I'm trying to run a house ad in my Android app, advertising our beta. I set up the house ad according to the instructions at AdMob. I added house ads in the mediation area and everything looks like it should

Re: [android-developers] In-App billing draft apk not appearing in Developer Console

2012-12-06 Thread jb
OK, I think I got it working. All I needed to do was to add my In-App Products to my published apk, and now I can get the information for the In-App Product, using my draft apk version. On Thursday, December 6, 2012 5:34:45 PM UTC-8, Nikolay Elenkov wrote: On Fri, Dec 7, 2012 at 10:29 AM,

Re: [android-developers] Design Questions about Spinners and Localized Values

2012-12-06 Thread Mark Phillips
After some more thought, I think your advice to use the position of the unit name in the array will work. The only issue I can think of is if I add a new unit after the app is released, the new entry has to go at the end of the array. For example, take pressure units. Say I start with the units:

[android-developers] Re: Changing from Checkbox to Switch controls

2012-12-06 Thread lbendlin
create a custom preference with reflection. On Thursday, December 6, 2012 7:45:11 PM UTC-5, dashman wrote: I've got Preference screens that use Checkboxes right now. I'd like to move to Switches for a more consistent UI. I understand Switch is api14+ - so i have to use ToggleButton before

[android-developers] Re: AdMob House Ads

2012-12-06 Thread Nobu Games
The Admob administration panel says in fine print that it can take up to 48 hours until click and impression figures get updated. In my own experience it is multiple times a day though. Did you set the correct publisher id in your AdView? On Thursday, December 6, 2012 8:08:44 PM UTC-6, John

[android-developers] Can't Use Raw Links and Anchor Links in One TextView?

2012-12-06 Thread TreKing
I'm trying to display some text that I get from various web sources in some TextViews. The data is out of my control and may contain links to other sites. The links may be raw or anchored. By this I mean: Raw link is like *http://www.google.com* Anchored link is like *a

[android-developers] Re: How to launch my own GUI to handle incoming/outgoing call (instead of Default PHONE app)

2012-12-06 Thread Gaurav Wable
Can anyone help? On Wednesday, 5 December 2012 12:48:35 UTC+5:30, Gaurav Wable wrote: I wan to tu use my app for incoming/outgoing call...(simply i want to display my own GUI during a incoming/outgoing call) Android app Mobile Accessibility UK does the same. link to this app is here

[android-developers] Re: How to launch my own GUI to handle incoming/outgoing call (instead of Default PHONE app)

2012-12-06 Thread Gaurav Wable
Can anyone help? On Wednesday, 5 December 2012 12:48:35 UTC+5:30, Gaurav Wable wrote: I wan to tu use my app for incoming/outgoing call...(simply i want to display my own GUI during a incoming/outgoing call) Android app Mobile Accessibility UK does the same. link to this app is here

Re: [android-developers] Re: android phones and bluetooth

2012-12-06 Thread gjs
http://sourceforge.net/p/bluegps4droid/home/Home/ On Friday, December 7, 2012 4:12:27 AM UTC+11, dashman wrote: any links to code fragments to talk to a bluetooth gps - serial profile. i'm familiar with NMEA etc. re the poster as to why? there's always out of the norm applications. my

[android-developers] Java knowledge

2012-12-06 Thread Sadhna Upadhyay
i everybody, haw much java knowledge is required for android, actually i have very little knowledge about java. -- 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] Netbeans for Linux and Android

2012-12-06 Thread SL@maxis
I am thinking of writing C/C++, java for Linux and Android, on desktop of course. Any problem with NetBeans ? Trying to kill 3 birds with one stone. Thanks. -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ -- You received this message because you are subscribed to

[android-developers] Re: Java knowledge

2012-12-06 Thread Awdhesh Jha
You should be know only core java for it. On Friday, December 7, 2012 12:32:01 PM UTC+5:30, Sadhna Upadhyay wrote: i everybody, haw much java knowledge is required for android, actually i have very little knowledge about java. -- You received this message because you are