Re: [android-developers] Record phonecall over Bluetooth

2013-07-11 Thread Piren
He probably didn't notice he's recording the sound of the speaker... On Wednesday, July 10, 2013 9:12:03 PM UTC+3, Kristopher Micinski wrote: How do you record a phone call normally when no headsets are connected? You shouldn't be able to do this, ... Kris On Wed, Jul 10, 2013 at 1:48

Re: [android-developers] Re: can _ever_ the intent received by a BroadcastReceiver onReceive() method be null?

2013-07-11 Thread Piren
No point of being sure here... even if the current code is structured in a way that it shouldn't be null, nothing says it will stay like that in all future code revisions. Ever since i started getting null exceptions from android (not NullPointerException... a Null instead of an exception) i

[android-developers] Android Open Accessory

2013-07-11 Thread psyco
hi all, am developing an android application that communicates with a board (arduino) via USB cable am using Android open accessory 1.0 protocol ( AOA1.0) i establish the USB communication and every thing works fine but my Galaxy nexus smartphone becomes hotter and the app blocks sometimes

[android-developers] Vertical Datepicker

2013-07-11 Thread Nikolay Konstantinov
Hi guys, I'm wondering if is it possible to switch the orientation of a DatePicker. I mean by default the numberPicker with the day, month and year appears first(if you look from left to right and horizontally) and the CalendarView appears second. I want the same order but vertically, i.e.

[android-developers] Re: Android Open Accessory

2013-07-11 Thread psyco
is there any one who works with AOA 1.0 ? Le jeudi 11 juillet 2013 08:59:00 UTC+1, psyco a écrit : hi all, am developing an android application that communicates with a board (arduino) via USB cable am using Android open accessory 1.0 protocol ( AOA1.0) i establish the USB

Re: [android-developers] Record phonecall over Bluetooth

2013-07-11 Thread Fred Niggle
for personal uses I have a script on a laptop which watches the android device bluetooth name to change to INCALL(to start nearby laptop/desktop recording audio) and i have an android app which changes the name during call in progress - but yes actually recording both sides of a call from an app

Re: [android-developers] Re: can _ever_ the intent received by a BroadcastReceiver onReceive() method be null?

2013-07-11 Thread Palmer Eldritch
That's nice advice - but in this case I think one should have a guarantee Does it make sense to receive a null intent ? Is it even possible with the current android code ? On Thursday, July 11, 2013 9:46:00 AM UTC+3, Piren wrote: No point of being sure here... even if the current code is

Re: [android-developers] Re: can _ever_ the intent received by a BroadcastReceiver onReceive() method be null?

2013-07-11 Thread Piren
i'm pretty sure it's impossible to guarantee something like that... i don't think part of their new programmer orientation is if you ever touch the code that runs BroadcastReceiver.onReceive...never send a null intent. Either way, at least on android 4.2.2_r1, it seems like it's impossible to

Re: [android-developers] Re: Modifying an String of Android Resource File (*.arsc)

2013-07-11 Thread Yaron Reinharts
No need to reinvent the wheel: https://code.google.com/p/android-apktool/ Hope this helps Yaron On 07/11/2013 02:13 AM, giles ian wrote: Hi Illyoung Choi, * * *Is it possible for you to share the code for the entire thing. i.e. * * * *1.Parsing* *2. Modifying * On Tuesday, June 21, 2011 8:09:12

Re: [android-developers] Re: can _ever_ the intent received by a BroadcastReceiver onReceive() method be null?

2013-07-11 Thread Palmer Eldritch
a this is a step to the right direction ;) notice they don't check for null now any places the ReceiverData object is initialized ? btw search in grepcode Sucks big time ! could you in the name of Mordor tell me what I should make out from here :

Re: [android-developers] Re: Modifying an String of Android Resource File (*.arsc)

2013-07-11 Thread giles ian
Thanks Yaron, but my requirement is parsing and modifying arsc file at runtime on the device. So my next question is can apktool be ported on device. What I mean is since the source code is available are there any lib/frameworks (that apktool) which are only available for desktop and not for

[android-developers] Helicopter view inside an app (think thumbnails of Activities)

2013-07-11 Thread darrinps
Want to have a helicopter view of other Activities so that the user can click on one of the thumbnails and be sent to that Activity as it looks in the thumbnail. This will mean pre-rendering each Activity then storing what they look like off someway then adding those images to some sort of

Re: [android-developers] Re: Modifying an String of Android Resource File (*.arsc)

2013-07-11 Thread Yaron Reinharts
As far as I know the apktool can be ported but I haven't tried it myself. Let us know :) /Yaron On 07/11/2013 08:30 PM, giles ian wrote: Thanks Yaron, but my requirement is parsing and modifying arsc file at runtime on the device. So my next question is can apktool be ported on device. What I

Re: [android-developers] How i can programatically downlaod our emails from gmail account ?

2013-07-11 Thread Lew
Ashish Sharma wrote: java [sic] mail api is working fine for gmail account. can you please guide, how to use it for exchange server? http://lmgtfy.com/?q=Java+Mail+API+connect+to+exchange+server -- Lew -- -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: creating apk according to selected java files

2013-07-11 Thread Lew
Look at the Ant documentation for the javac task and file lists. RTFM is often the best way to go. -- Lew On Tuesday, July 2, 2013 4:13:34 AM UTC-7, surabhi jain wrote: Thanks for reply. I am sure that there is no dependency of remaining classes. But exactly I am not getting that How

Re: [android-developers] How can I get the reference to the top (or second top, or any one in the task) activity object

2013-07-11 Thread TreKing
On Wed, Jul 10, 2013 at 11:01 PM, Linda Li codingpotatoli...@gmail.comwrote: It is not clean. Actually I can make relaunching the app by starting with Login page. However, when we press back, there is Gallery. It is not clean at all. I have no idea what you mean by it not being clean.

[android-developers] Parsing + Modifying resource.arsc programmatically [ without apktool ]

2013-07-11 Thread giles ian
Hello All, I need to parse and make changes in resource.arsc programmatically without the help of apktool. Something like http://stackoverflow.com/a/4761689, but this is for android manifest. And the structure of manifest and resource.arsc is different so the above link wont work. Does anyone

Re: [android-developers] Parsing + Modifying resource.arsc programmatically [ without apktool ]

2013-07-11 Thread Nikolay Elenkov
On Fri, Jul 12, 2013 at 8:35 AM, giles ian gilesian@gmail.com wrote: Hello All, I need to parse and make changes in resource.arsc programmatically without the help of apktool. Something like http://stackoverflow.com/a/4761689, but this is for android manifest. And the structure of

[android-developers] Seekbar Save state and restore

2013-07-11 Thread Keith Zettler
How exactly can i save/restore this seekbar if user uses back button or activity is destyroyed? I have not been able to find a specific example anywhere public class MainActivity extends Activity implements SeekBar.OnSeekBarChangeListener { SeekBar seekBar; SeekBar seekBar1;

[android-developers] Looking for Android developer

2013-07-11 Thread Ali S. Rangwala
Hello All, We are looking for Android developer to work with us. Interested members can forward us your brief profile and links on Google play for review. This is consultant based role to start with (project wise work allocation) and eventually grow into permanent role. Regards, Ali -- --

Re: [android-developers] Seekbar Save state and restore

2013-07-11 Thread TreKing
On Thu, Jul 11, 2013 at 9:14 PM, Keith Zettler leftcont...@gmail.comwrote: How exactly can i save/restore this seekbar if user uses back button or activity is destyroyed? 1 - Your code shows two seekbars so referring to this seekbar is ambiguous. 2 - A seekbar, being a built-in widget, should