[android-developers] Re: My Developer account got suspended, how can I create a new one?

2012-07-02 Thread JP
On Jun 26, 10:34 pm, pierre1232 wrote: > I am trying to create a new account, Assuming you're not getting "busted" setting up a new account, in the end, are you expecting different results the second go around? You'll get kicked out the way you were bounced the first time, no? -- You received

Re: [android-developers] Re: Android Text To Speech

2012-07-02 Thread Deepa M
Sir, i am using Second option in that i am not enable to pause particular position, I am using Buffer reader On Mon, Jul 2, 2012 at 6:50 PM, Juned Khan wrote: > > this may help you > http://stackoverflow.com/questions/6222823/text-to-speech-in-android > > Thanks > Juned Khan > >> -- > Yo

Re: [android-developers] Re: Android Spinner not working

2012-07-02 Thread MyName? ?
check your main.xml file in that specify all the propertise of spinner On 3 July 2012 02:55, Justin Anderson wrote: > I haven't done any java on it as yet because the xml spinner not working >> so didn't make sense do the java until i got that down >> > Ok, so can you define what "not workin

Re: [android-developers] Not able to connect to REST service from application in device

2012-07-02 Thread Todd Grigsby
To clarify, it sounds like your device is trying to connect to the wrong machine. This has nothing to do with REST. You may want to debug your application and see what port and address it's trying to connect to. -- You received this message because you are subscribed to the Google Groups "Andro

Re: [android-developers] Re: How to: Free to Paid App and retain preference and db files?

2012-07-02 Thread Mystique
Hi, I want to ask something about LVL. >From my brief understanding, LVL add additional code to check back with Google Play server and refuse to run if it was not a paid version. Is there possibility to have the check in Google Play server and not allow user to update if the copy installed is

Re: [android-developers] Separate design based on resolution. Android 2.3

2012-07-02 Thread Justin Anderson
Tell your client to do it another way The Android recommended way. On Jun 29, 2012 1:30 AM, "Dmitriy F" wrote: > I'm implementing an application which must support multiple screens and > provide devices with different layout designs. My task claims that layout > design separation must be base

RE: [android-developers] Re: image show with zoom/pan

2012-07-02 Thread Tommy Hartz
http://bit.ly/NqThF7 not that hard was it.. From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of guich Sent: Monday, July 02, 2012 8:33 PM To: android-developers@googlegroups.com Subject: [android-developers] Re: image show with zoom/pan no

[android-developers] Re: image show with zoom/pan

2012-07-02 Thread guich
nobody? -- 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 options,

Re: [android-developers] spinners?

2012-07-02 Thread Ray Tayek
At 08:34 AM 7/2/2012, you wrote: Am I the only one who thinks it's weird that drop down lists are called spinners on Android? no. --- co-chair http://ocjug.org/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, se

RE: [android-developers] Re: AlarmManager not waiting to fire off alarm...

2012-07-02 Thread Tommy Hartz
You know what. I must have been looking at the wrong variable when using getDayOfMonth. It seems to be working great now that I removed the - 1 after it. Sorry to have bothered everyone with such a dumb issue! Thanks for the help! I hate those 1d10T errors J From: android-developers@google

RE: [android-developers] Re: AlarmManager not waiting to fire off alarm...

2012-07-02 Thread Tommy Hartz
If I don't it gives me the following day for some reason. From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of Nobu Games Sent: Monday, July 02, 2012 6:43 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] Re: AlarmManager

Re: [android-developers] Is there is any method to completely come out/exit from application and not only from activity (call finish() of activity) ?

2012-07-02 Thread TreKing
On Wed, Jun 27, 2012 at 7:07 AM, SIVAKUMAR.J wrote: > But when i click menu->settings->manage application->then i click my > application.It shows my app is running.It shows 2 buttons enabled "force > close" ,"uninstall". > my assumtion is finish() only close the activity. > This is because Andro

Re: [android-developers] How to upgrade google market to 4.03 version

2012-07-02 Thread TreKing
On Tue, Jun 19, 2012 at 11:22 PM, Sandeep Venkat wrote: > When run the google market application the output in the emulator The Market app is not supposed to be run on the emulator. Whatever you did to achieve this is a hack.

Re: [android-developers] Can't get AVD to run my noddy app!

2012-07-02 Thread TreKing
On Wed, Jun 27, 2012 at 11:29 AM, Doug Ponsford wrote: > Eclipse says that my app is loding, but it never runs. All I get > is the simulator window with "ANDROID" on the screen and the buttons > on the righ-hand side. > Is this the first time you've set up the Emulator? It's slow as mol-asses, p

Re: [android-developers] HttpGet Unknown Host

2012-07-02 Thread Michael Leung
I solved this. I found I need to add the permission to receiver for the widget On Tue, Jul 3, 2012 at 3:47 AM, TreKing wrote: > On Sun, Jul 1, 2012 at 11:25 PM, Michael Leung wrote: > >> Does anyone have some ideas? > > > Google "UnknownHostException" > > > -

Re: [android-developers] Re: AlarmManager not waiting to fire off alarm...

2012-07-02 Thread Nobu Games
Ok... another thing I just noticed: You are subtracting 1 day from your day of month, which would yield a date in the past. Is there a reason for that line of code: cal.set(Calendar.*DAY_OF_MONTH*, dpEvent.getDayOfMonth()-1); Maybe you confused that with the month. Months have the offset 0, not

RE: [android-developers] Re: AlarmManager not waiting to fire off alarm...

2012-07-02 Thread Tommy Hartz
tpAddEvent.getCurrentHour() returns 24 hour format. I updated Calendar.HOUR to Calendar.HOUR_OF_DAY but I have the same issue From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of Nobu Games Sent: Monday, July 02, 2012 5:51 PM To: android-develo

Re: [android-developers] Share data between an activity and an event listener (separate class file)

2012-07-02 Thread Justin Anderson
> > I maybe should have said: > Can I access attributes/member variables of my activity in my event > listener? That is: Manipulate the date in my listener and have the updated > data in my activity? > Again, this is a basic Java/Programming question and is not specifically related to Android in a

Re: [android-developers] Someone stole my sound effects

2012-07-02 Thread Lew
On Monday, July 2, 2012 2:55:45 PM UTC-7, TreKing wrote: > > On Wed, Jun 27, 2012 at 1:18 AM, kekzilla wrote: > >> Can I do anything? I thought about filling out the google trademark form >> but I have no proof except my app is older. > > > That's probably your best bet. You don't have source file

Re: [android-developers] AppWidgetHostView in gridview. Posible?

2012-07-02 Thread Justin Anderson
> > Anybody know somthing? > Yep, I know lots of somethings... I also know that "addView(View, LayoutParams) is not supported in AdapterView." You are going to have to give us more information if you want help. You should never be calling addView on an AdapterView My guess (and it can only be

Re: [android-developers] How to load offline maps in android

2012-07-02 Thread TreKing
On Tue, Jun 26, 2012 at 10:07 PM, greed wrote: > I am using the Droyd SDK This has nothing to do with this list. Ask the developers of that SDK. - TreKing

Re: [android-developers] AppWidgetHostView in gridview. Posible?

2012-07-02 Thread TreKing
On Tue, Jun 26, 2012 at 6:25 PM, Alexander Lisenkov < lisenkov.alexan...@gmail.com> wrote: > Hi! A have a problem. I need to inflate view (AppWidgetHostView) into my > gridview by adapter. I have error "addView(View, LayoutParams) is not > supported in AdapterView" when i try to add view You sho

Re: [android-developers] Expandiblelistview same layouts takeing for both actvities

2012-07-02 Thread Justin Anderson
> > HI > i Resolved this issue > Great! Would you mind posting the solution so that others who have similar problems can get their issues resolved as well? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sat, Jun 30, 2012 at 10:28 AM, Jagadeesh wrote:

Re: [android-developers] Not able to connect to REST service from application in device

2012-07-02 Thread TreKing
On Sun, Jun 24, 2012 at 2:07 AM, sunil wrote: > When we run app in emulator it works fine but when I run/debug it on > device, it gives error "Connection Refused". > > Please tell me how can I consume REST service from application running on > device. > Get a device that can successfully connect

Re: [android-developers] Someone stole my sound effects

2012-07-02 Thread TreKing
On Wed, Jun 27, 2012 at 1:18 AM, kekzilla wrote: > Can I do anything? I thought about filling out the google trademark form > but I have no proof except my app is older. That's probably your best bet. You don't have source files for the sounds you made? Or any other indication of the work you d

Re: [android-developers] Problems while transfering photshop design on Android layout

2012-07-02 Thread TreKing
On Tue, Jun 26, 2012 at 1:04 PM, Dmitriy F wrote: > I can't understand why those images look smaller than on my photoshop > design layout - the resolutions are equal. You're not assuming your app has access to the entire screen space, are you? --

[android-developers] Re: AlarmManager not waiting to fire off alarm...

2012-07-02 Thread RichardC
Just one thing I spotted: Calendar.HOUR is the 12hour clock you also need to set Calendar. AM_PM as well or use Calendar.HOUR_OF_DAY which is the 24hour clock -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Re: AlarmManager not waiting to fire off alarm...

2012-07-02 Thread Nobu Games
Just an educated guess. The documentation about the get method states, that alarm dates in the past will be triggered immediately, which is your case. Following line might be the problem because of a possibly wrong 12 / 24 hour conversion: cal.set(Calendar.*HOUR*, tpAddEvent.getCurrentHour()

Re: [android-developers] Android tab, not supporting usb dongle

2012-07-02 Thread TreKing
On Thu, Jun 28, 2012 at 2:19 PM, MMC wrote: > Please set right the problem. Please contact the seller or manufacturer for technical support. This has nothing to do with this list. - TreKing

Re: [android-developers] Way to promote android apps.

2012-07-02 Thread TreKing
On Thu, Jun 21, 2012 at 1:37 PM, nikunj wrote: > Can anyone suggest some ways to do so? I'd start with: https://www.google.com/search?q=how+to+promote+android+app - TreKing

[android-developers] AlarmManager not waiting to fire off alarm...

2012-07-02 Thread Tommy Hartz
Hi everyone, I have a "calendar" feature in my app that the user will be able to select a day and time and set an event. My problem is if the date is the current date the alarmIntent fires off immediately, not waiting for the proper time. I have been running tests with it and I set the time for

Re: [android-developers] Re: Android Spinner not working

2012-07-02 Thread Justin Anderson
> > I haven't done any java on it as yet because the xml spinner not working > so didn't make sense do the java until i got that down > Ok, so can you define what "not working" means? What does it do if you click on it? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/sit

Re: [android-developers] big bluetooth packets

2012-07-02 Thread Latimerius
On Mon, Jul 2, 2012 at 10:43 PM, bob wrote: > Has anyone seen the situation where you send out a large bluetooth packet > (maybe like 2000 bytes?) and on the receiving end you only receive like 1100 > bytes? Seems like the rest of it got bit bucketed. Is there an easy > workaround? To my knowle

Re: [android-developers] My Developer account got suspended, how can I create a new one?

2012-07-02 Thread TreKing
On Wed, Jun 27, 2012 at 12:34 AM, pierre1232 wrote: > I am a full time developer, the suspension is just like stabbing me. > Good to see you're not overreacting to the situation in any way. > I am trying to create a new account, but others said the google can trace > me down anyway. > > Please,

Re: [android-developers] Play Store kind of UI interface

2012-07-02 Thread TreKing
On Fri, Jun 29, 2012 at 4:32 AM, Put_tiMe wrote: > Is this UI control/view already available in native SDK, or is it > something that is built into the app? http://developer.android.com/reference/android/support/v4/view/ViewPager.html ---

Re: [android-developers] Find technology used for an app

2012-07-02 Thread TreKing
On Mon, Jun 25, 2012 at 1:13 AM, symet wrote: > I was wondering if there is a way to find what technology(development > language, database, server) does an app uses. Yeah: ask the developer. - TreKi

Re: [android-developers] IOException thrown by AccountManagerFuture.getResult where there is working internet connection

2012-07-02 Thread TreKing
On Thu, Jun 21, 2012 at 1:33 PM, Sandeep Dhameshia < sandeep.dhames...@gmail.com> wrote: > any help would be really appreciated, thanks in advance. Did you try reading the exception message? - TreKin

Re: [android-developers] Android Carousel

2012-07-02 Thread TreKing
On Fri, Jun 29, 2012 at 6:26 AM, Jorge Gil Royo wrote: > But when I test the application on a mobile phone (Android 4.x) the > carousel works correctly, but no buttons appear. > And if you test on the 4.X emulator? > Does anyone know why it happens? > Does anyone know how to fix it? > Your q

Re: [android-developers] Re: LoaderCallbacks.onLoadFinished unnecessarily called twice when rotating

2012-07-02 Thread Malcolm Evershed
Your issue sounds like it could be different than mine since I'm generally seeing onLoadFinished() called in initLoader(). You might want to do more web or StackOverflow searching or search the Android bug database -- I think somewhere I read about a problem where onLoadFinished() would not be call

Re: [android-developers] play recorded audio

2012-07-02 Thread TreKing
On Fri, Jun 22, 2012 at 4:49 AM, Aashish kumar wrote: > i m working on a app and i wanna help u guys..some one can told me how > play a recorded message in active call and only caller listen this > message??? >From reading this list, I don't believe that's possible.

[android-developers] big bluetooth packets

2012-07-02 Thread bob
Has anyone seen the situation where you send out a large bluetooth packet (maybe like 2000 bytes?) and on the receiving end you only receive like 1100 bytes? Seems like the rest of it got bit bucketed. Is there an easy workaround? Thanks. -- You received this message because you are su

Re: [android-developers] activity looses ArrayList<> items

2012-07-02 Thread TreKing
On Mon, Jul 2, 2012 at 2:52 PM, alex b wrote: > The problem is that it looses items and it seems to have after the GC > runs. So what am I missing? I would guess your "serializeIt" and "deserializeIt" methods are buggy. Debug your app. Also, both onCreate and onRestoreInstanceState will be ca

Re: [android-developers] Google Now - College Football info

2012-07-02 Thread Justin Anderson
Your post is off-topic for this list... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Jun 29, 2012 at 8:25 AM, Sean Rowe wrote: > I have noticed it doesn't show scores for past college football games. I > understand the last game was in January

Re: [android-developers] Re: Unpublished App receiving comments and ratings

2012-07-02 Thread Justin Anderson
> > I don't understand why > Unpublishing an app prevents new users from downloading the app. Anyone that has already downloaded the app still has access to it. The same way I don't understand why there is no ability to removed > Uninstalled app from the developer console. > You mean an unpublis

Re: [android-developers] How to start particular method on boot

2012-07-02 Thread Justin Anderson
> > I am presently developing an android application, that should "*start > particular method in my application on boot"* > Use a receiver... Write a class that extends BroadcastReceiver, and listens for the boot completed broadcast. http://developer.android.com/reference/android/content/Intent.ht

Re: [android-developers] How can I create an app that print in android?

2012-07-02 Thread Justin Anderson
I've recently implemented Google Cloud Print... It seemed to work pretty well, but there is some setup required by the users. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Jul 1, 2012 at 6:10 AM, Mark Murphy wrote: > Step #1: Find some third-pa

[android-developers] activity looses ArrayList<> items

2012-07-02 Thread alex b
I have an activity that contains a private Vector, thread safe version of ArrayList. The activity adds items to the ArrayList, and in onSaveInstanceState() I save the data (see code below). The problem is that it looses items and it seems to have after the GC runs. So what am I missing?

Re: [android-developers] WebView.setEmbeddedTitleBar gone in Jelly Bean? Which alternatives?

2012-07-02 Thread sven
Hi Nobu, I really don't know how I should thank you! Haven't tried this yet, but will do so by the end of the week If you want to I can give you repository access, so you can debug the code > and commit any changes. > Yes, please give me the repository access. I don't know whether I will find

[android-developers] Re: TO COMPARE TWO BITMAP FILES AND SHOW RESULT USING BUTTON

2012-07-02 Thread alex b
Developer forums are for getting help with code that you have ALREADY written. It's generally frowned upon to ask the forum to write the code for you. What you want to do doesn't sound trivial, but i would guess you'll need to compare each bit of each bitmap and come up with some kind of thres

Re: [android-developers] supporting tablet and a phone

2012-07-02 Thread TreKing
On Mon, Jul 2, 2012 at 1:56 PM, bob wrote: > Is it common to have two XML layout files if you want an app to work on a > tablet and a phone? No. http://developer.android.com/training/basics/supporting-devices/index.html -

[android-developers] Re: Share to unlock functions

2012-07-02 Thread alex b
it doesn't sound like such a new idea, i.e. i think a lot of apps already do that. So i would guess it's OK to do. On Thursday, June 28, 2012 7:57:59 AM UTC-7, Oliver wrote: > > Hi, > > So I have an idea for making my app more popular. It's a free app, but > some functions are not available b

Re: [android-developers] Calling sub-class getCursor() from main class problem

2012-07-02 Thread Justin Anderson
What exactly are you trying to accomplish? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Jul 2, 2012 at 12:56 PM, Justin Anderson wrote: > Are these classes activities? > > Thanks, > Justin Anderson > MagouyaWare Developer > http://sites.google.c

Re: [android-developers] Calling sub-class getCursor() from main class problem

2012-07-02 Thread Justin Anderson
Are these classes activities? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Jul 1, 2012 at 10:01 PM, Mystique wrote: > Hi I have this in my method calling getCursor() and is working ok within > the class. > Now I try to call the method from the

[android-developers] supporting tablet and a phone

2012-07-02 Thread bob
Is it common to have two XML layout files if you want an app to work on a tablet and a phone? For instance, if (is_a_phone() == true) setContentView(R.layout.phone_xml); else setContentView(R.layout.tablet_xml); -- You received this message because you are subscribed to the Google Groups "

[android-developers] Re: Cannot Find create new android project in ecllipse

2012-07-02 Thread alex b
Here's a link to the first android tutorial that covers creating a project and building a hello world app: http://developer.android.com/training/basics/firstapp/creating-project.html If you have a problem with the installation that is preventing the new project wizard from lauching, I would su

Re: [android-developers] Re: Need Android code for Automatically answering the phone call

2012-07-02 Thread Iniyan P
Hi, Is there any workaround solution for attending the call automatically. Thanks, Iniyan P On Sun, Jul 1, 2012 at 12:05 PM, Iniyan P wrote: > Hi, > > I found the following code:- > > TelephonyManager tm = (TelephonyManager) > getSystemService(TELEPHONY_SERVICE); > Class c = Cl

Re: [android-developers] WebView.setEmbeddedTitleBar gone in Jelly Bean? Which alternatives?

2012-07-02 Thread Nobu Games
Hi Sven, I fixed the issues as good as I could. The resulting class file is now hosted on Google Code released under the Apache 2.0 license because I had to "borrow" a few lines from the original WebView source code to make it work. The URL is http://code.google.com/p/android-titlebar-webview

Re: [android-developers] Cannot populate List call from Main Class to Sub Class

2012-07-02 Thread Justin Anderson
Why don't you start by explaining at a high level what you are trying to accomplish. I don't really understand what you are trying to do, but it seems like you are going about it the wrong way... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Jul

Re: [android-developers] HttpGet Unknown Host

2012-07-02 Thread TreKing
On Sun, Jul 1, 2012 at 11:25 PM, Michael Leung wrote: > Does anyone have some ideas? Google "UnknownHostException" - TreKing - Chicago transit tra

Re: [android-developers] jelly bean help needed!!

2012-07-02 Thread TreKing
On Mon, Jul 2, 2012 at 2:05 AM, Jacob wrote: > I know they announced that the galaxy nexus would be getting the update > mid july > > *but does that include the sprint model*?? If not when will they get the > updates?* * > That has nothing to do with this list. Ask your carrier. > *Or is there

Re: [android-developers] mapviewError

2012-07-02 Thread TreKing
On Mon, Jul 2, 2012 at 4:57 AM, deepak mamdapure < developer.it.a...@gmail.com> wrote: > : Couldn't get connection factory client > plz how to resolve this problem > Like this: http://lmgtfy.com/?q=%22Couldn%27t+get+connection+factory+client%22 --

Re: [android-developers] How can I send suggestions to Android development?

2012-07-02 Thread TreKing
On Fri, Jun 22, 2012 at 4:21 PM, Washington Araújo Ramos < war@hotmail.com> wrote: > I have some ideas, I don't know if they're good or not but I would like to > send them to the developers so if they like it, they could put it in a new > version :) > In addition to what's been said, you can

Re: [android-developers] Multiple checkbox in on row from listview

2012-07-02 Thread Justin Anderson
What have you tried so far? And you need to be a little more specific than "its made many problems" if you want help... http://catb.org/esr/faqs/smart-questions.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Jul 1, 2012 at 11:27 PM, asheesh a

Re: [android-developers]

2012-07-02 Thread Justin Anderson
> > I'm new to this and trying to find out where to register to publish > products > to google play. I didn't see any on the google play website when I clicked > on developer. > http://developer.android.com/distribute/googleplay/publish/register.html i'm new to this.i wont to known how to make

[android-developers] Sound Sensor?

2012-07-02 Thread Ray da Costa
A helping friends. Anyone know can tell me which API to Identify using and enjoying the audio input. That is, when the phone receives an audio input (VOICE) plugin not done, but a person's voice Tks. -- Ray da Costa "The best way to predict the future is to invent it." Alan Kay -- You received t

[android-developers] Re: spinners?

2012-07-02 Thread Cezar Signori
Nope. I do as well. I hope someone can answer this for you. I don't know if this is what you are looking for, but you can have a spinner by declaring a progressbar with the style Small. Like this: Em segunda-feira, 2 de julho de 2012 12h34min21s UTC-3, bob escreveu: > > Am I the only one wh

Re: [android-developers]

2012-07-02 Thread rambabu mareedu
refer my blog there you can find how to create database in android http://ramscreative.blogspot.in/ On Mon, Jul 2, 2012 at 7:53 PM, anamika yadav yadav < anamikayadav.anam...@gmail.com> wrote: > i'm new to this.i wont to known how to make data base in android? > > -- > You received this message b

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-02 Thread Daniel Drozdzewski
On 2 July 2012 12:20, jean-francois garreau wrote: > little Up beacause not fixed > > Le jeudi 28 juin 2012 16:12:35 UTC+2, jean-francois garreau a écrit : >> >> The problem is : as I'm creating my custom view heriting from View, I >> don't have any findById so the pattent viewHolder won't be use

[android-developers] spinners?

2012-07-02 Thread bob
Am I the only one who thinks it's weird that drop down lists are called spinners on Android? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from th

[android-developers] Re: 'Roll your own' view layout for activity - best approach?

2012-07-02 Thread RichardC
22 buttons to me seems too many. Have you thought about a single owner draw button that looks like the 22 buttons and when clicked you take the (x, y) of the click and calculate where the user hit i.e. which virtual button. I do this for game boards like chess, checkers, othello/reversi etc. Wh

Re: [android-developers] what needs to be change to enable call recording on android platform?

2012-07-02 Thread RichardC
Contact one of the developers of the various apps you have found. On Monday, July 2, 2012 4:13:15 PM UTC+1, Hitendrasinh Gohil wrote: > > yes mark that's true that it is not supported. > > But there are various apps that offers this functionality. > > I know that application processor doesn't hav

Re: [android-developers] what needs to be change to enable call recording on android platform?

2012-07-02 Thread Kristopher Micinski
If it does work on some device, that's really bad, and I'd wager that you're probably just plain wrong... The OS does *not* have access to the in call audio stream., this is something that's handled by underlying hardware, it has *nothing* to do with Linux, the only way you interface with the call

Re: [android-developers] what needs to be change to enable call recording on android platform?

2012-07-02 Thread Hitendrasinh Gohil
yes mark that's true that it is not supported. But there are various apps that offers this functionality. I know that application processor doesn't have access to baseband processor. so what i need to change at os/system level or any other that makes this possible? On Mon, Jul 2, 2012 at 8:3

Re: [android-developers] 'Roll your own' view layout for activity - best approach?

2012-07-02 Thread TreKing
On Sun, Jun 24, 2012 at 2:09 PM, nmw01223 wrote: > Am I right in thinking that actually the way I have to do this is create > my own derivation of ViewGroup, and then get that to do all the laying out > of the elements? Based on what you posted, I would say yes. ---

Re: [android-developers] what needs to be change to enable call recording on android platform?

2012-07-02 Thread Mark Murphy
On Mon, Jul 2, 2012 at 10:49 AM, Hitendrasinh Gohil wrote: > hey mark murphy, > > can u pls guide me on this? As I have written, perhaps 100 times between here and StackOverflow, call recording is not supported, except perhaps in speakerphone mode. -- Mark Murphy (a Commons Guy) http://commonsw

Re: [android-developers] what needs to be change to enable call recording on android platform?

2012-07-02 Thread Hitendrasinh Gohil
hey mark murphy, can u pls guide me on this? On Mon, Jul 2, 2012 at 5:32 PM, Asheesh Arya wrote: > in some device call recording works in some device it doesn't work!! i > also made call recording application. so its better to leave that!! > > -- > You received this message because you are subs

[android-developers] Re: Best books for learning Android

2012-07-02 Thread G. Blake Meike
Mark's stuff is, indeed, awesome. I humbly suggest Programming Android, as well... G. Blake Meike Marakana The second edition of Programming Android is now on-line: http://shop.oreilly.com/product/0636920023005.do On Sunday, July 1, 2012 7:12:39 PM UTC-7, Jason Hsu wrote: > > I'm considering

[android-developers] Re: Fail to create Android Project after Eclipse update

2012-07-02 Thread G. Blake Meike
I had the same issue. I was able to fix it, and I believe what did it is running the SDK manager from the command line ($ADK_HOME/tools/android). I removed and re-installed the support libraries (in a section way down near the bottom) The problem seems to have something to do with the libra

[android-developers]

2012-07-02 Thread anamika yadav yadav
i'm new to this.i wont to known how to make data base 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 android

[android-developers]

2012-07-02 Thread anamika yadav yadav
I'm new to this and trying to find out where to register to publish products to google play. I didn't see any on the google play website when I clicked on developer. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Re: Android Text To Speech

2012-07-02 Thread Juned Khan
this may help you http://stackoverflow.com/questions/6222823/text-to-speech-in-android Thanks Juned Khan > -- 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 unsub

Re: [android-developers] How can I send suggestions to Android development?

2012-07-02 Thread Kristopher Micinski
On Fri, Jun 22, 2012 at 5:21 PM, Washington Araújo Ramos wrote: > Ok, hi > > First of all, I'm beggining to Android Development (I'm still 17, I > don't know to much :/) and I want to send some suggestions to Android > Developers. I mean, the guys who actually updates the OS > > I have some ideas,

Re: [android-developers] Re: Need help - hidden GPS monitoring app

2012-07-02 Thread Kristopher Micinski
Good luck. I might note that this list is not for Android source development and modifications, and you will likely be redirected to the Android source lists (source.android.com). You can find lists there, (android-platform, android-porting, etc...) which might help you out more than this one, wh

Re: [android-developers] Best books for learning Android

2012-07-02 Thread Kristopher Micinski
On Mon, Jul 2, 2012 at 12:42 AM, Mek Rama wrote: > Hello Kristopher, > > Could you tell me what is best in Mark Murphy's books. > > Well, in general I'm not seeking too much out of Android books, because Android isn't some super dense computer science concept, it's a system. Mark's books give we

Re: [android-developers] Where do I register?

2012-07-02 Thread Greg Donald
On Wed, Jun 27, 2012 at 11:21 PM, Nickolaus Poling wrote: > I'm new to this and trying to find out where to register to publish products > to google play. I didn't see any on the google play website when I clicked > on developer. https://play.google.com/apps/publish/Home -- Greg Donald -- Yo

[android-developers] adjustPan and adjustResize

2012-07-02 Thread ala hammad
hello all, i want to use adjustPan and adjustResize together but when use it one is working and display the other .. mean i can't extend edittext when writing more than line .. any body have idea ... -- You received this message because you are subscribed to the Google Groups "Android Developer

[android-developers] Re: LoaderCallbacks.onLoadFinished unnecessarily called twice when rotating

2012-07-02 Thread szakalinhoPL
Hi, I noticed same situation, I'm not an expert but it seems like a bug because behaviour of onLoadFinished is not normal according to documentation which says that onLoadFinished should be called in initLoader, but it never does. In very simple application it happens as well. Did you report i

Re: [android-developers] what needs to be change to enable call recording on android platform?

2012-07-02 Thread Asheesh Arya
in some device call recording works in some device it doesn't work!! i also made call recording application. so its better to leave that!! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develope

[android-developers] Re: Android code to switch to vibrate

2012-07-02 Thread Zohob
This may help you: http://android.konreu.com/developer-how-to/vibration-examples-for-android-phone-development/ Third passage "Example: Vibrate in a Given Pattern" and the fourth one: Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); long[] pattern = { 0, 200, 500 }; v.vibrate(p

[android-developers] Re: Customizing ListView

2012-07-02 Thread Cezar Augustus Signori
Hi! Deepa, when you create your list adapter you can pass an int that is a constant in the R file that points to a xml file in your layout folder. That XML defines the view that you are going to display for each row. You can create it, called it books_row.xml and save it under the layouts fold

[android-developers] Re: Fail to create Android Project after Eclipse update

2012-07-02 Thread John Langan
Turns out to be a bug in SDK Rev. 20. http://code.google.com/p/android/issues/detail?id=33859 On Friday, June 29, 2012 3:17:43 PM UTC-4, John Langan wrote: > > I upgraded Eclipse yesterday with the latest updates. I installed Android > SDK Tools Rev 20, Android SDK Platfom-Tools Rev 12 and And

[android-developers] Android code to switch to vibrate

2012-07-02 Thread Aliasgar Rangwala
Dear All, We are looking for code to switch the Android device to Vibrate and back to normal for a given time. Can anyone share their findings/code snippets/APIs if used to achieve the same. Thanks for your time. Cheers, Ali -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-02 Thread jean-francois garreau
little Up beacause not fixed Le jeudi 28 juin 2012 16:12:35 UTC+2, jean-francois garreau a écrit : > > The problem is : as I'm creating my custom view heriting from View, I > don't have any findById so the pattent viewHolder won't be useFull for me :( > > And I'm already implemnting it with the v

[android-developers] Re: mapviewError

2012-07-02 Thread deepak mamdapure
keytool -genkey -v -keystore Keys/temp.keystore -alias temp.keystore - keyalg RSA -validity 2 Generating MD5 print for the private KeyStore Use the following command to generate a MD5 print for your KeyStore. ' this will generate a MD5 print for the temp.keystore keystore ‘ this will prompt

Re: [android-developers] Best books for learning Android

2012-07-02 Thread Mark Murphy
On Sun, Jul 1, 2012 at 10:31 PM, Kristopher Micinski wrote: > Buy a subscription to Mark Murphy's books. Hands down, the fastest > and easiest way to both learn the platform and keep up to date on new > developments. Thanks for the kind words! -- Mark Murphy (a Commons Guy) http://commonsware.

[android-developers] Re: SDK Rev. 20 Breaks Emulation

2012-07-02 Thread Subramanya Somayaji
While one emulator is already running we try to run another emulator it doesn't starts but we can see that the process is created but with far less memory in use than the first one that is visible but the second never becomes visible... Ref: http://code.google.com/p/android/issues/detail?can=2

[android-developers] mapviewError

2012-07-02 Thread deepak mamdapure
: Couldn't get connection factory client plz how to resolve this 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

Re: [android-developers] Android Text To Speech

2012-07-02 Thread Rocky
In that situation you need to do - A) 1. generate the wav file and use the MediaPlayer 2. through media player you can pause and play from you desire position B) 1. read all text in string, before passing to tts 2. read the position where you are pausing the tts 3.read text from that (paused) p

[android-developers] Customizing ListView

2012-07-02 Thread Deepa M
Dear All i am going to the app which takes data from database called book in that details of book will be there i had retrieved it through cursors and added it to list view...i want customize the list view by adding button to that each list thats for read button... do u have any idea? -- Thanks&

Re: [android-developers] Android Text To Speech

2012-07-02 Thread Deepa M
Sir, https://alltechsolution.wordpress.com/2011/10/18/texttospeach-example/ this application just stops tts service if i play back it is going to start from scratch.. i want tts has to play text from where i clicked pause button... On Thu, Jun 28, 2012 at 6:10 PM, Fabien R wrote: > On 28/06/12

  1   2   >