[android-developers] Re: Multiple databases

2011-05-26 Thread kypriakos
Actually the DB is only 15KB (very few entries). This is a bit strange - actually I did a Clean on 3 other projects and when I built them they all cannot generate the apk. So it seems that this is global issue in Eclipse now. I read that Locale was an issue, others said the jvm you start Eclipse

[android-developers] InputReader.cpp

2011-05-26 Thread vered cohen sharvit
How come the android Froyo version source code doesn't include frameworks/base/libs/ui/InputReader.cpp -- 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

[android-developers] Eclipse stopped creating APKs

2011-05-26 Thread kypriakos
Hi all, this is a separate issue from the question I posted regarding multiple databases in the same Android app so I am posting it in a different thread. I was able to create, compile and deploy android projects from version 1.6 to now without many issues in Eclipse Galileo. All the sudden this

[android-developers] swf file to have audio and video chat

2011-05-26 Thread chandan
hey folks i am developing one chatting application on Android in this i need to implement flash player i need guidenss on this please help me how to proceed and is this possible in android to play .swf file ?? Thanks in advance -- You received this message because you are subscribed to

[android-developers] Toast for Non-activity class

2011-05-26 Thread Abhishek Kumar Gupta
I want to display the Toast for Non-activity class which is present in the framework(framework/base/policy). Please help me. -- 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: Twitter for Android App

2011-05-26 Thread Peter Webb
I am trying to use Twitter4j. There is a special version for Android. The instructions say to put the jar into your classpath. But if I click on the jar file in my project or try to use it, it says invalid jar format. This gives me no hint as to what to do ... If you got an authorisation error,

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-26 Thread Dave Johnston
I managed to extract a crash log. This crash also happens on the emulator: 05-26 06:57:08.516: ERROR/dalvikvm(339): Could not find method android.app.Activity.invalidateOptionsMenu, referenced from method android.support.v4.app.FragmentActivity.supportInvalidateOptionsMenu 05-26 06:57:08.516:

[android-developers] Re: in- app billing

2011-05-26 Thread Mithun
Thank you. On May 26, 1:58 am, TreKing treking...@gmail.com wrote: On Tue, May 24, 2011 at 4:59 AM, Mithun mithunsmur...@gmail.com wrote: 1. is it possible for me to control the pricing using 'in-app billing' ? No.  2. once i publish the app, is it possible to change the price? Yes.

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-26 Thread Dave Johnston
Aha, appears to be the optimisation step of ProGuard! -dave On May 26, 8:05 am, Dave Johnston john...@gmail.com wrote: I managed to extract a crash log. This crash also happens on the emulator: 05-26 06:57:08.516: ERROR/dalvikvm(339): Could not find method

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-26 Thread Zsolt Vasvari
I've seen problems like this. There appears to be no discernable rhyme and reason as to when a VerifyError will be thrown. The only way to know is to run your code. If it only happens with the release build, I suspect a ProGuard optimization issue. On May 26, 3:05 pm, Dave Johnston

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-26 Thread Ali Chousein
Chris, yes, I said exactly that, but you got it completely wrong. My understanding of good initial design Dan was referring to, was software which can live for the next 30 years or something like that (those are the words he used, he can correct me if he was trying to mean anything else). I

[android-developers] Error Parsing xml response

2011-05-26 Thread DoM
Hi everyone,I have to parse an xml response,that I receive whit a SOAP call.this is the xml response: ?xml version=1.0 encoding=utf-8? soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

Re: [android-developers] Bluetooth: Server vs Client

2011-05-26 Thread Shashidhar
On Thu, May 26, 2011 at 9:38 AM, JR jayarr.patri...@gmail.com wrote: Hello I am new in android application development. I have red the BluetoothChat sample code and having a hard time understanding the server-client side. My question is: If I set the device (say dev1) be the server and the

[android-developers] Multi Mic support

2011-05-26 Thread Srikant
Hi all, Does Android ALSA framework support capturing/recording sound from more than one microphone at a time? If so, please let me know the code part of it. Thanks, Srikant -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Rtsp Http Streaming

2011-05-26 Thread Filiz Gökçe
Hi, I try to make live stream on android, I try lots of ways, but none of them doesnt work. Could you help me ? *This is example of rtsp;* mMediaPlayer = new MediaPlayer(); mMediaPlayer.setDataSource(KralStream.getTvStreamUrl().toString()); mMediaPlayer.setDisplay(holder);

[android-developers] Re: All Renderscript samples fail to run on actual device (Samsung Galaxy Tab 10.1 'google io edition')

2011-05-26 Thread Scythe
Welcome to the club. Several threads were discussing this problem, without any result. At least someone from the Android dev-team could tell us that it's a know issue, or whatever. Quite frustrating. On May 26, 3:15 am, Streets Of Boston flyingdutc...@gmail.com wrote: I'm trying to run a

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread Hitendrasinh Gohil
hi, I was also stucked with rtsp audio streaming.i was also getting the same error with emultor like u. Exeption :05-26 10:22:46.186: ERROR/MediaPlayerService( 10157): create PVPlayer 05-26 10:23:06.382: ERROR/PlayerDriver(10157): Command PLAYER_INIT completed with an error or info -1 05-26

[android-developers] What is the advantages of dynamic decisions of Renderscript?

2011-05-26 Thread bsh
I read an article which was written by Tim Bray. In the article, there is a statement, A secondary effect of choosing runtime thread-launch management is that dynamic decisions can be made about where to run a script I know Renderscript JIT compiler in honeycomb caches target-based binary

[android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread Senthil ACS
Hi, After you get a cursor object from a query, check the count before doing moveToFirst(). if(cursor.getCount() 0) { cursor.moveToFirst(); ... processing ... } On May 26, 3:12 am, adek adrian.ka...@gmail.com wrote: Hello, As a beginner in android java world I need your help. I've

[android-developers] Re: ListView Issue

2011-05-26 Thread Senthil ACS
Agree with Treking.. Hint: Use layoutinflater On May 26, 2:28 am, TreKing treking...@gmail.com wrote: On Tue, May 24, 2011 at 1:18 PM, bhima santosh santosh.bh...@gmail.comwrote: I want to have a listview with each row having a button,textview and image. Can anyone tell how to go abt it

[android-developers] Re: security exception while reading call logs?

2011-05-26 Thread Senthil ACS
We delete call logs for one of our use cases and it works. We use these two permissions. And it must work for query as well. uses-permission android:name=android.permission.READ_CONTACTS / uses-permission android:name=android.permission.WRITE_CONTACTS / Senthil On May 26, 9:43 am,

Re: [android-developers] Google account group

2011-05-26 Thread Goutom
Is there no one to reply me? On Thu, May 26, 2011 at 9:55 AM, Miguel Morales therevolti...@gmail.comwrote: lol On Wed, May 25, 2011 at 8:50 PM, Goutom goutom.sust@gmail.com wrote: Hello Dear I am relatively new in android application development.Brother I need example which will get

[android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread adek
Thanks. But this is strange. When I add this condition if(cursor.getCount() 0) } ... My ListView is empty. In LogCat everything looks fine. On May 26, 9:59 am, Senthil ACS acs@gmail.com wrote: Hi, After you get a cursor object from a query, check the count before doing moveToFirst().

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread Filiz Gökçe
I always try on device, my device is Samsung Galaxy S -2.1 Its about same of devices ? Filiz Gökçe On 26 May 2011 10:48, Hitendrasinh Gohil hitendra.virtuei...@gmail.comwrote: hi, I was also stucked with rtsp audio streaming.i was also getting the same error with emultor like u.

[android-developers] Re: Radio button in list adapter

2011-05-26 Thread Senthil ACS
Have a layout that contains a radio button. Inflate the layout for the list in your getView() or bindView method. On May 26, 7:13 am, TreKing treking...@gmail.com wrote: On Wed, May 25, 2011 at 8:42 PM, Jay SB jsb.andr...@gmail.com wrote: Could  any throw some light for implementing the Radio

Re: [android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread Nikolay Elenkov
On Thu, May 26, 2011 at 4:59 PM, Senthil ACS acs@gmail.com wrote: Hi, After you get a cursor object from a query, check the count before doing moveToFirst(). moveToFirst() will not fail, just return false if empty. Just check the return value before proceeding. -- You received this

Re: [android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread Kostya Vasilyev
A cursor's initial position is -1, right before the first row, so it's quite enough to do this: Cursor cursor = . query ... if (cursor != null) { ... get column indices here while (cursor.moveToNext()) { ... get data using the indices here ... } cursor.close(); }

[android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread adek
I tried to change my code this way. There is still a problem. I tried to check for empty rows but even then I've got this exception error. Maybe the problem is in my way of dealing with those two cursors (second cursor is in another) On May 26, 10:18 am, Kostya Vasilyev kmans...@gmail.com

[android-developers] Re: Honeycomb 3.1 USB Host support for pointing devices with absolute coordinates

2011-05-26 Thread FrankG
I would make this to a more general question : Has Honeycomb 3.1 at all usb host support. My assumption : This is a vendor extension done by Motorola and all details a unknown.. But maybe someone else has any insights ? Thanks ! Frank On 24 Mai, 18:36, balakrith 2kr...@gmail.com wrote: I got

[android-developers] 3d game engine for android game development on ubuntu

2011-05-26 Thread Abhishek Talwar
hey guys Now after making a few android applications i want to step into 3d game development. I run ubuntu please let me know which game engines do i have as options since most of them are only for windows and mac like unity 3d -- You received this message because you are subscribed to the

[android-developers] onRestart from Home button or from back button

2011-05-26 Thread Fina Perez
Hi! I need to handle in someway if my activity is being restarted after pressing the home button or is it just happend thanks to the back button. The scenario is as follow: Everytime I go out from my app and then go back, I have to make some security checks. So I override the onRestart()

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread Hitendrasinh Gohil
hi, then just try to log the url that ur applying to datasource.and first check it out with vlc player that is it working or not? because there is an error with initialization. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: security exception while reading call logs?

2011-05-26 Thread Hitendrasinh Gohil
Hi , my problem solved with following code.and just define uses-permission android:name=android. permission.READ_CONTACTS / in android manifest. private void readCallLogs() { try { long dialed; String columns[]=new String[] {

[android-developers] Re: v4 Fragments library VerifyError crash

2011-05-26 Thread Dave Johnston
Aye, I'm going to try enabling/disabling certain optimisation passes and see if I can isolate the one causing this issue. -dave On May 26, 8:10 am, Zsolt Vasvari zvasv...@gmail.com wrote: I've seen problems like this.  There appears to be no discernable rhyme and reason as to when a

[android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread adek
I tried to change my code this way. There is still a problem. I tried to check for empty rows but even then I've got this exception error. Maybe the problem is in my way of dealing with those two cursors (second cursor is in another) Maybe I'll start from the beggining and you will tell me a

Re: [android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread Kostya Vasilyev
You can use the pattern for the top level and the nested query both. -- Kostya 2011/5/26 adek adrian.ka...@gmail.com I tried to change my code this way. There is still a problem. I tried to check for empty rows but even then I've got this exception error. Maybe the problem is in my way of

[android-developers] Re: Bluetooth: Server vs Client

2011-05-26 Thread JR
Thanks Shashidhar! Your answers are indeed correct. I red again the BluetoothChat sample source code of android and I finally understand the RFCOMM channel. On May 26, 3:29 pm, Shashidhar shashi.zep...@gmail.com wrote: On Thu, May 26, 2011 at 9:38 AM, JR jayarr.patri...@gmail.com wrote: Hello

[android-developers] Re: Widget-specific Preferences

2011-05-26 Thread String
On Thursday, May 26, 2011 2:44:37 AM UTC+1, Jake Colman wrote: The only issue is when I launch the Preference Activity from the widget it does not display the widget-specific value but displays the preference's default value. Are you actively setting the value for each of your widget-specific

[android-developers] echo cancellation

2011-05-26 Thread neha
Is there any way to synchronize the capturing and playback of audio data in Android? I am using audioRecord/track to achieve this.But its producing echo. Is there any way to cancel echo. My code is- { isRecording=true;

[android-developers] echo cancellation

2011-05-26 Thread neha
Is there any way to synchronize the capturing and playback of audio data in Android? I am using audioRecord/track to achieve this.But its producing echo. Is there any way to cancel echo. My code is- { isRecording=true;

[android-developers] UI problem

2011-05-26 Thread kaushik p
Hi all I have written a UI for one android phone say X whose screen size is 7 inches , now if i install my application to other phone whose screen is 3 inches , the UI is not relatively displayed . It still shows the button as huge as 7 inch screen one . Due to this my application is only half

[android-developers] Re: UI problem

2011-05-26 Thread ThaMe90
Depends on if you use custom images for the UI elements. If so, you will need to make different versions for each screen configuration (LDPI, MDPI, HDPI and the xtra large one if you truly avid in this). If your UI is comprised of only the standard UI components that the Android SDK presents you,

Re: [android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread Adrian Kajda
Can you give me a link with an example of that? 2011/5/26 Kostya Vasilyev kmans...@gmail.com You can use the pattern for the top level and the nested query both. -- Kostya 2011/5/26 adek adrian.ka...@gmail.com I tried to change my code this way. There is still a problem. I tried to check

[android-developers] soft-keyboard customize

2011-05-26 Thread smokerpg
i am trying to customize Android default keyboard. what i am trying to do is just replace [Enter-key]'s title. can [android:imeOption actionDone] title be replaced to my custome title? please help me. thanks. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] sending events from monkeyunner fails

2011-05-26 Thread isildur
Hi I am trying to open a browser and want to send some text in the browser address bar. Howver when the script actually begins typing the desired text it starts failing and following errors are thrown. The event is never received by adb. can someone please take a look what could be wrong?

Re: [android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread Kostya Vasilyev
I already posted the basic pattern two messages back. As for nested data, you might want to use CursorAdapter (with subclassing) instead of trying to fit nested queries to SimpleCursorAdapter, which is more trouble than it's worth. If you do, you won't need to iterate through the top-level query

[android-developers] How to handle select html control on a WebView ?

2011-05-26 Thread ulula
Hi, I'm displaying a webpage in a WebView and on the webpage, there is a HTML select element. When you click on drop down list, a dialog with an list of option is supposed to popup. But I don't know why my WebView crash. // sample of code -- private void initialize() {

Re: [android-developers] new to android

2011-05-26 Thread Marcin Orlowski
On 24 May 2011 21:08, Hadi Al-Zawad alzawadh...@gmail.com wrote: I'm new to android world and I want to know what to download on my computer to start making apps do i need an experience or it is easy to make programs ? You do not need any expierience at all. Just come here and ask here for

Re: [android-developers] echo cancellation

2011-05-26 Thread Daniel Drozdzewski
Neha, Your echo comes from the fact that you are using 400 bytes buffer to transfer the recording to the playback. It will physically take time to fill that buffer and then process. Making the buffer much smaller might not necessarily work either, as it will mean more overhead of the recording +

[android-developers] Re: echo cancellation

2011-05-26 Thread neha
Thanx alot 4 rply but if i use large buffer size ,it produce delay between record and play. On May 26, 11:46 am, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: Neha, Your echo comes from the fact that you are using 400 bytes buffer to transfer the recording to the playback. It will

Re: [android-developers] 3d game engine for android game development on ubuntu

2011-05-26 Thread gaurav gupta
:) Tell me too. if u got any solution. On Thu, May 26, 2011 at 2:11 PM, Abhishek Talwar r.o.b.i.n.abhis...@gmail.com wrote: hey guys Now after making a few android applications i want to step into 3d game development. I run ubuntu please let me know which game engines do i have as options

[android-developers] Android Class Tree

2011-05-26 Thread closetrack
Hi, I am looking for some kind of a hierarchical class chart for Android API.Is there something like this?? 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@googlegroups.com To

Re: [android-developers] how to read emails in android?

2011-05-26 Thread Hitendrasinh Gohil
On Wed, May 25, 2011 at 9:45 PM, Hitendrasinh Gohil hitendra.virtuei...@gmail.com wrote: hi, Is there anyway to read emails from gmail in android.is there any open source library for that? -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] how to read emails in android?

2011-05-26 Thread Mark Murphy
There is a port of JavaMail for Android floating around somewhere. On Thu, May 26, 2011 at 12:45 AM, Hitendrasinh Gohil hitendra.virtuei...@gmail.com wrote: hi, Is there anyway  to read emails from gmail in android.is there any open source library for that? -- You received this message

[android-developers] Re: Trying to install Google App Inventor, need help!

2011-05-26 Thread Spooky
On May 25, 6:42 pm, ctccromer ctccro...@yahoo.com wrote: My Phone: Motorola Bravo Ok...same here. I'm working on setting up Google App Inventor so I can make an app for Android. However, I'm having an issue at the part where I'm supposed to manually install a Driver for my specific phone.

Re: [android-developers] 3d game engine for android game development on ubuntu

2011-05-26 Thread Mohammed Hossain Doula
There are lots of in my knowledge... Like jMonkeyEngine, Shiva3D, Airplay, Untity3D... On Thu, May 26, 2011 at 5:04 PM, gaurav gupta gaurav.gupta...@gmail.comwrote: :) Tell me too. if u got any solution. On Thu, May 26, 2011 at 2:11 PM, Abhishek Talwar r.o.b.i.n.abhis...@gmail.com wrote:

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-26 Thread DanH
It doesn't have to live for 30 years, but 5-10 would be nice. One might invest 2 years in developing and enhancing a complex application, by which time, if the platform is weak, it may no longer be runnable, or there may no longer be any customers. Not every application is a game knocked out in

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-26 Thread DanH
Iterative approach to software development might seem as lack of good initial design to some people, but I'm not aware of a better alternative. Actually, iterative approach, as typically practiced, is a misunderstanding of agile. Agile is incremental, where each step builds on the previous

Re: [android-developers] how to read emails in android?

2011-05-26 Thread Hitendrasinh Gohil
hi, is there any lib like javamail under lgpl. -- 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] 3d game engine for android game development on ubuntu

2011-05-26 Thread Robin Talwar
Thanks but i run ubuntu on my system... i am specifically finding one game engine so that i can develop games on ubuntu you find unity3d and shiva3d working on windows environment only On Thu, May 26, 2011 at 4:47 PM, Mohammed Hossain Doula hossaindo...@gmail.com wrote: There are lots of in

Re: [android-developers] 3d game engine for android game development on ubuntu

2011-05-26 Thread Mohammed Hossain Doula
jMonkeyEngine is written on java so you can try that... On Thu, May 26, 2011 at 5:43 PM, Robin Talwar r.o.b.i.n.abhis...@gmail.comwrote: Thanks but i run ubuntu on my system... i am specifically finding one game engine so that i can develop games on ubuntu you find unity3d and shiva3d

[android-developers] Your Android App Deserves Better

2011-05-26 Thread OrenTodoros
Hi Group Oren Todoros here, Online Marketing Strategist at the AppSnips, part of the Logia Group. I'd like to introduce you to an effortless solution that will help you generate more revenue from your Android apps. The advanced tools and extensive distribution channels that AppSnips offers for

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-26 Thread Robert
I don't have the 40 years experience of the original poster.. just a kid in the industry at 30 years. Little more if counting the time in college doing programming. By their nature, all decisions are limiting. As I look back over the various OS/programming systems I've used, most (LInux

Re: [android-developers] 3d game engine for android game development on ubuntu

2011-05-26 Thread Robin Talwar
ol ry thanks for sharing the knowledge On Thu, May 26, 2011 at 5:16 PM, Mohammed Hossain Doula hossaindo...@gmail.com wrote: jMonkeyEngine is written on java so you can try that... On Thu, May 26, 2011 at 5:43 PM, Robin Talwar r.o.b.i.n.abhis...@gmail.com wrote: Thanks but i run

Re: [android-developers] how to read emails in android?

2011-05-26 Thread Kostya Vasilyev
You could also look at the code in Android's built-in email application. Its source is available in the repository, unlike gmail. Or write your own IMAP library :) -- Kostya 2011/5/26 Hitendrasinh Gohil hitendra.virtuei...@gmail.com hi, is there any lib like javamail under lgpl. -- You

Re: [android-developers] Re: Twitter for Android App

2011-05-26 Thread Marcio Valenzuela
Yes. I actually got the app working lasnite. Did u import the jar file in Java Build Path? Regards/Saludos, MV www.gea-hn.com www.santiapps.com www.compasahn.com On May 26, 2011, at 12:57 AM, Peter Webb r.peter.w...@gmail.com wrote: I am trying to use Twitter4j. There is a special

[android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread adek
Thank you for your answer. Yes. I wasn't sure which way is better - using two cursors or using one cursor with Custom CursorAdapter (and curosr inside custom View in it). On May 26, 12:27 pm, Kostya Vasilyev kmans...@gmail.com wrote: I already posted the basic pattern two messages back. As

[android-developers] Re: Does Ads can't compatible with requestWindowFeature command?

2011-05-26 Thread Perry168
Does no body has this problem? On 5月24日, 下午4時53分, Perry168 perry...@netvigator.com wrote: Hi ,   Today, I try to add the Ads in my activity. I found that it throw error. After trial and error, I found if I not turn off the title bar. The activity can run in perfect. But if I really hope to

Re: [android-developers] how to read emails in android?

2011-05-26 Thread Hitendrasinh Gohil
hi, my req is just to read mail from gmail.if android's source code can help me than pls send me link for 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-developers@googlegroups.com To

[android-developers] Out of memory error

2011-05-26 Thread pramod.deore
I am developing one application in that I am receiving continous huge amount of data through socket connection. Therefore some times when I run the applicaiton I got out of memory error. How to handle this exception? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: How to simulate 3D-rotation of irregular object using OpenGL in android?

2011-05-26 Thread bhavani sankari
Thanks for the useful information!! But i just wanted to know the method to create irregular object (e.g: 3D chair). How to obtain its co-ordinates and vertices? Is there any tool to obtain the same? On May 25, 9:50 pm, TreKing treking...@gmail.com wrote: On Wed, May 25, 2011 at 1:31 AM,

Re: [android-developers] Re: echo cancellation

2011-05-26 Thread Daniel Drozdzewski
On Thu, May 26, 2011 at 11:59 AM, neha neha.05...@gmail.com wrote: Thanx alot 4 rply but if i use large buffer size ,it produce delay between record and play. Neha, All I suggested was to use the larger of values returned by both getMinBufferSize() calls for all 3 aspects: recording, playing

[android-developers] Re: echo cancellation

2011-05-26 Thread neha
Denial, I tried what u said,but it dint solve my problem but producing more echo.. I think its happening bcoz voice coming from speaker is also going in mic. If u have ny idea about it,Plz help. On May 26, 1:20 pm, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On Thu, May 26, 2011 at

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-26 Thread Ali Chousein
To eliminate misunderstandings, I would like to make the following additions: By iterative approach, I mean the short release cycles which also enables you to get immediate feedback and evaluate if you are heading on the right direction. I guess this is exactly what you mean by Agile is

[android-developers] Re: Trying to install Google App Inventor, need help!

2011-05-26 Thread ctccromer
Okay I tried that and it still won't work. I plugged it in as None, waited a minute, then tried it but the line below the listed part was blank.. Any idea? Also, what file do you use to actually start AI? -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: Trying to install Google App Inventor, need help!

2011-05-26 Thread Mark Murphy
Support for App Inventor can be found here: http://appinventor.googlelabs.com/forum/ On Thu, May 26, 2011 at 8:49 AM, ctccromer ctccro...@yahoo.com wrote: Okay I tried that and it still won't work.  I plugged it in as None, waited a minute, then tried it but the line below the listed part was

[android-developers] Re: How to simulate 3D-rotation of irregular object using OpenGL in android?

2011-05-26 Thread Nicholas Johnson
This would not be relevant to Android, unless you're talking about how to import the object into memory. For 3D object creation there are a variety of tools to use. Check out some of the free ones, such as Blender http://www.blender.org/. Nick -- You received this message because you are

[android-developers] Re: inflating xml and adding dynamically

2011-05-26 Thread imran ali
Thanks, It work for me. Regards Imran ali On May 25, 10:11 pm, TreKing treking...@gmail.com wrote: On Wed, May 25, 2011 at 4:29 AM, imran ali imran...@gmail.com wrote: i am getting this exception The specified child already has a parent. You must call removeView() on the child's parent

[android-developers] Animation transition between activities in ActivityGroup?

2011-05-26 Thread imran ali
Hi, I am using ActivityGroup and in that i have been using activities, how can i animate activities at the time of setContentView(view)? Regards Imran ali -- 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] Identify Read-Only Contacts

2011-05-26 Thread datayeah!
Hi, as far as you might know, there are contacts belonging to a sync- adapter (e.g. twitter) that are available read-only in your android addressbook. is it possible to identify a read-only contact through a query on the contactscontract content provider or is there a way to identify these

[android-developers] Re: Widget-specific Preferences

2011-05-26 Thread Jake Colman
S == String sterling.ud...@googlemail.com writes: S On Thursday, May 26, 2011 2:44:37 AM UTC+1, Jake Colman wrote: S The only issue is when I launch the Preference Activity from the widget it does not display the widget-specific value but displays the preference's default value.

Re: [android-developers] Re: ListView Issue

2011-05-26 Thread Hikmat Khan
Dear I have the same problem to On Thu, May 26, 2011 at 1:01 AM, Senthil ACS acs@gmail.com wrote: Agree with Treking.. Hint: Use layoutinflater On May 26, 2:28 am, TreKing treking...@gmail.com wrote: On Tue, May 24, 2011 at 1:18 PM, bhima santosh santosh.bh...@gmail.com wrote:

Re: [android-developers] Re: ListView Issue

2011-05-26 Thread Nguyen Dat
Dear Bhima, Try following example: http://android.amberfog.com/?p=296 Notice that: convertView = mInflater.inflate(R.layout.item1, null); R.layout.item1 is layout of row item, so you can create whatever layout you want. Best Regards, DatNQ On Thu, May 26, 2011 at 8:58 PM, Hikmat Khan

Re: [android-developers] Re: ListView Issue

2011-05-26 Thread Neri Martinez
read that, it use a xml inflator, it will help you http://www.androiddom.com/2011/02/android-shopping-cart-tutorial.html 2011/5/26 Hikmat Khan dliswa.andr...@gmail.com Dear I have the same problem to On Thu, May 26, 2011 at 1:01 AM, Senthil ACS acs@gmail.com wrote: Agree with

Re: [android-developers] Re: echo cancellation

2011-05-26 Thread Ashwani Kumar
When the mic can hear the speaker then there is acoustical feedback howling because the sound goes around and around. To stop the howling: a) Turn down the gain control or volume control. b) Separate the mic and speaker and point them away from each other. c) Use a good speaker with a flat

Re: [android-developers] Most popular devices/ development devices

2011-05-26 Thread TreKing
On Wed, May 25, 2011 at 11:27 PM, Stefan Alder twigbra...@gmail.com wrote: Are the Android Market Stats overall for all apps? The device stats, no, it's per app. Platform and country stats are shown both per app and for overall. Is there a way I can access those? Publish an app in the

Re: [android-developers] Re: Widget-specific Preferences

2011-05-26 Thread Kostya Vasilyev
Preference.onSetInitialValue is triggered by addPreferencesFromResource, which in turn is called from within your activity's onCreate - not before. However, this happens before your code has a change to call findPreference / setKey. One of the methods that gets called while this is taking place

Re: [android-developers] how to read emails in android?

2011-05-26 Thread Hitendrasinh Gohil
On Thu, May 26, 2011 at 5:09 AM, Hitendrasinh Gohil hitendra.virtuei...@gmail.com wrote: hi, my req is just to read mail from gmail.if android's source code can help me than pls send me link for that. -- Regards, Hitendrasinh Gohil -- You received this message because you are

[android-developers] Immediate need of Mainframe Technical Lead/Developer // Miami FL // 6-7 month contract

2011-05-26 Thread Emraaz khan
Hello, Hope you are doing well. I am a technical recruiter with Panzer Solutions LLC Software Implementing and IT consulting company located in CT. Please go through the Job Description and send me your updated resume with contact information. *Please reply at emr...@panzersolutions.com

[android-developers] How to make my app compatible with plugins?

2011-05-26 Thread neuromit
I have written a very simple game that I'd would also like to make plugins for. The plugins would change the sprites a the logic that controls the sprites. I'm hoping that something like this is possible, but I am not sure how to do it. I've thought about including all the plugin code into the

[android-developers] Re: Identify Read-Only Contacts

2011-05-26 Thread datayeah!
found my solution already. SyncAdapterType[] types = ContentResolver.getSyncAdapterTypes(); for (int i = 0;itypes.length;i++) { System.out.println(); System.out.println(accountType: +

[android-developers] Re: MapActivity, sub-Activities and timeout issue

2011-05-26 Thread Dani
I would be happy if someone would give me some advice on how to develop a popup sub-activities system Daniele -- 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

[android-developers] Re: All Renderscript samples fail to run on actual device (Samsung Galaxy Tab 10.1 'google io edition')

2011-05-26 Thread Streets Of Boston
Yeah,,, i saw some other threads about this later without any resolution. I'll try to bump this thread so now and then (not too often, i promise :-)). -- 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: All Renderscript samples fail to run on actual device (Samsung Galaxy Tab 10.1 'google io edition')

2011-05-26 Thread Streets Of Boston
I tried the following: In the sample's onCreate() method, i created the mentioned file in the cache-dir (0 size, readable, writable, executable). This got rid of the original error-message. But instead, it complained about the cache-file being too small and the sample still crashes. Then I put

Re: [android-developers] Re: ListView Issue

2011-05-26 Thread m.haythem rouis
Use LayoutInflater inside the method ListView.setAdapter(); View ListItm = mInflater.inflate(R.layout.itm_layout, null); where *itm_layout *is an xml layout file contatining your button, text view and image. After that you can use method ListItm.findViewById(R.id.button); 2011/5/26 Neri

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread dan raaka
If this is a generic issue - please file a bug under b.android.com -Dan On Thu, May 26, 2011 at 1:55 AM, Hitendrasinh Gohil hitendra.virtuei...@gmail.com wrote: hi, then just try to log the url that ur applying to datasource.and first check it out with vlc player that is it working or

Re: [android-developers] Re: All Renderscript samples fail to run on actual device (Samsung Galaxy Tab 10.1 'google io edition')

2011-05-26 Thread dan raaka
Is the failure only on Google I/O devices ? What about Moto Xoom - does it fail on 3.0.1 and 3.1 ? -Dan On Thu, May 26, 2011 at 8:11 AM, Streets Of Boston flyingdutc...@gmail.comwrote: I tried the following: In the sample's onCreate() method, i created the mentioned file in the cache-dir (0

[android-developers] Re: Widget-specific Preferences

2011-05-26 Thread Jake Colman
Kostya, Maybe I'm missing something obvious here but where do I get an opportunity to provide Android with my extended PreferenceGroup or PreferenceScreen? I need to make sure that my addPreference method called during the processing sequence initiated by addPreferencesFromResource. But how

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-26 Thread niko20
I've been with Android since around April 2009. And I can tell you that the first year *was* painful. Especially the first six months (April to September ish). However, it has matured to totally awesome now. I mean c'mon, OpenGL ES 2.0, NDK C++ support including STL, this list of great things you

[android-developers] Two-way listeners/observers

2011-05-26 Thread Oceanblue
I have an interesting design challenge: I have a frontend(Activity) and a backend (written in native C/C++) code. The backend is a complex object which partially controls the flow of application once started runs in it's own thread. So I have a distributed control scenario. The Activity needs

  1   2   >