[android-developers] AlarmManager with alarm icon

2011-01-19 Thread Andy Savage
I'm setting wake up alarms for a custom app using AlarmManager.set(). This correctly registers an alarm and the app is launched at the desired time. It doesn't however give a visual alarm indicator in the notification bar (RIGHT hand side, next to the time). How do I set this? I have seen 3rd

[android-developers] Re: AlarmManager with alarm icon

2011-01-19 Thread Andy Savage
text. On Jan 19, 5:27 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: On 19 January 2011 18:19, Andy Savage nos...@starsphere.net wrote: I'm setting wake up alarms for a custom app using AlarmManager.set(). This correctly registers an alarm and the app is launched at the desired

[android-developers] Re: AlarmManager with alarm icon

2011-01-19 Thread Andy Savage
Both Klaxon and Alarm Clock Plus do this (Both have free versions available on market if you want to take a look). On Jan 19, 5:49 pm, TreKing treking...@gmail.com wrote: On Wed, Jan 19, 2011 at 11:32 AM, Andy Savage nos...@starsphere.net wrote: It's not a notification as far as I can tell

[android-developers] Re: EditText inside ListView

2010-12-19 Thread Andy Savage
In case anyone wants to quickly replicate this to check it, I have an example project at: http://andysavage.homeip.net:2886/EditTextListViewDemonstration.zip To replicate simply run the app, and try to type text into any of the edit boxes. Using the emulator, when I first touch an EditText the

[android-developers] Re: EditText inside ListView

2010-12-19 Thread Andy Savage
This seems to solve the problem. Many many thanks. On Dec 19, 5:34 pm, Sarwar Erfan erfanonl...@gmail.com wrote: You need to change in your AndroidMenifest.xml Add  *android:windowSoftInputMode=adjustPan*   in the activity holding the listview. This will solve your problem.         activity

[android-developers] EditText inside ListView

2010-12-18 Thread Andy Savage
I've found a plethora of older unanswered questions about this, so I'm adding one more in the hope that someone has now found a solution. I have an EditText inside a ListView (Specifically its in a custom Preference inside a PreferenceScreen, but a simple ListView is enough to replicate it). When

[android-developers] C2DM Tied to Market? (e.g. will it work on non-official devices)

2010-08-16 Thread Andy Savage
Hi everyone, Quick question. Just wondering if Cloud to Device Messaging (C2DM) is available for devices that use Android 2.2 but don't have the Android Market installed (because they are not an official device). Is this service tied to the Market? Kind regards, Andy Savage -- You received

[android-developers] Developing a project on both Android Windows

2010-08-10 Thread Andy Savage
Hi everyone, I've got an interesting request that's hard to find information on Google for. I'm developing an application across both Android and windows which (mostly) shares the same classes. I was looking for a really easy way to duplicate some of the special Android classes on windows. For

Re: [android-developers] an experiment in open development: Vdroid

2010-08-03 Thread Andy Savage
Hi there, Just wondering if you can tell me what Vdroid does? I'm interested in anything related to video recording and playback but I can't find this package anywhere (I'm only using a developer phone so I can't see paid apps on the store). Couldn't find any screenshots or information. Looking

Re: [android-developers] Re: Twitter / Facebook source code

2010-07-22 Thread Andy Savage
Hello, Actually your in luck (sort of). There's an opensource java facebook client available for Android here: http://code.google.com/p/facebook-java-api/ I advise you check out google code (or google search) first before posting as there are many great links that pop up with a simple Open

[android-developers] Extended Logging Class?

2010-07-18 Thread Andy Savage
Hi everyone, Just wondering if anybody has a nice logging class that wraps around the standard logging class? For example a class that easily allows logging to be turned on and off, checks for a release etc? Cheers, Andy -- You received this message because you are subscribed to the Google

[android-developers] Route specific traffic through VPN?

2010-07-18 Thread Andy Savage
from all other applications being routed normally. Is it possible? Kind regards, Andy Savage -- 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

Re: [android-developers] Default Android Applications

2010-07-06 Thread Andy Savage
Hi there, You can find this out by installing the SDK and running the emulator. This will give you a working phone to have a look (for all intensive purposes). On Mon, Jul 5, 2010 at 4:51 PM, Srinivasan J srinivas1...@gmail.com wrote: : Hi all, I am new to Android Developement. I am

[android-developers] Re: Echo Cancellation

2010-07-06 Thread Andy Savage
Just a nudge on this, anybody have any information? On Wed, Jun 30, 2010 at 10:41 AM, Andy Savage a...@bluewire.net.nz wrote: Hi there, Can anybody tell me about the current state of echo cancellation in Android? Are the functions automatically applied to microphone input? Can I use

Re: [android-developers] Filter for crapps (crap apps)

2010-06-29 Thread Andy Savage
+1 for this. It's kind of ridiculous. One of Apples major arguments for moderation is that the Android App store has lots of crap in it including pornographic stuff. Whatever your view towards that kind of stuff. It would be really nice to filter it. When I search for facebook chat, or gmail I

[android-developers] Froyo for ADP2?

2010-06-29 Thread Andy Savage
Hi All, Does anybody know when the 2.2 update will come out for the ADP2 phone? I'm a bit pissed off that I recently purchased the phone only to have it come out with a version that's 3 generations old. Feeling a bit ripped off to be honest! -- You received this message because you are

[android-developers] Echo Cancellation

2010-06-29 Thread Andy Savage
Hi there, Can anybody tell me about the current state of echo cancellation in Android? Are the functions automatically applied to microphone input? Can I use it, or is it applied automatically? I presume it uses OSLEC? Is this correct? Kind regards, Andy Savage -- You received this message

Re: [android-developers] Re: rtsp client?

2010-06-28 Thread Andy Savage
With certain types of well formed RTSP streams the mediaplayer class can play it directly. http://m.youtube.com is a great example of some well formed feeds, but most RTSP feeds from the net seem to work fine. I've also managed to get ffserver streaming fine to it using H.264. On Mon, Jun 28,

Re: [android-developers] Re: Avoiding GPL

2010-06-27 Thread Andy Savage
From a technical standpoint presuming the GPL licence allows it (I'm not a lawyer and I don't pretend to be one) you might want to consider something like OpenIntents. http://code.google.com/p/openintents/ This could allow you to link two unrelated packages together in theory (I think). On Sun,

Re: [android-developers] Re: Avoiding GPL

2010-06-24 Thread Andy Savage
Ignoring the legal ramifications here. Let me say my opinion. I think that we need to be quite wary of the licences of each app and whether they are conforming to it. Obviously this person intends to try and not conform to it (if they can figure out how). But let me give you an example of why

Re: [android-developers] Re: Avoiding GPL

2010-06-24 Thread Andy Savage
AM, Andy Savage a...@bluewire.net.nz wrote: Ignoring the legal ramifications here. Let me say my opinion. I think that we need to be quite wary of the licences of each app and whether they are conforming to it. Obviously this person intends to try and not conform to it (if they can figure out

Re: [android-developers] Transmitting signals at 433Mhz

2010-06-23 Thread Andy Savage
of these options require a custom device that can transmit/receieve at 433mhz -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage

Re: [android-developers] Re: Should I put Please visit our sponsors above my ads ?

2010-06-22 Thread Andy Savage
to support you that way. -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Tue, Jun 22, 2010 at 1:40 PM, hzakimoto hzakim

Re: [android-developers] Re: Personalized Screen lock

2010-06-22 Thread Andy Savage
, Andy Savage -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Wed, Jun 23, 2010 at 7:34 AM, Indicator Veritatis

Re: [android-developers] Re: Playing live stream (RTP) in MediaPlayer

2010-06-21 Thread Andy Savage
(although this doesn't help me so much), so I know it works. I'm a bit stuck on what to try next! Any ideas would be appreciated. Kind regards, Andy Savage -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell

[android-developers] How do the DivX players render the video?

2010-06-21 Thread Andy Savage
codec presumbily). Do you think they would render each bitmap on an OpenGL surface after decoding the frame? Kind regards, Andy Savage -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341

[android-developers] Saving an encoded video stream with headers

2010-06-15 Thread Andy Savage
, but as the file has no headers, mediaplayer cannot play it back. Is there a way to use it as a datasource and have mediaplayer record it? Cheers, Andy -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852

Re: [android-developers] Re: RTP stream video decoding

2010-06-10 Thread Andy Savage
and comparing their method to yours. Link: http://sipdroid.org/ -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Wed, Jun

Re: [android-developers] Re: Oracle Android App Store

2010-06-10 Thread Andy Savage
of the latest phones and make a deal with HTC to include it alongside the google one. Or perhaps HTC could cobrand (HTC store run by xyz company). -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936

Re: [android-developers] Re: Playing live stream (RTP) in MediaPlayer

2010-06-09 Thread Andy Savage
). -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Mon, Jun 7, 2010 at 5:35 PM, Jez jeremy.a.co...@baesystems.com

Re: [android-developers] Re: Playing live stream (RTP) in MediaPlayer

2010-06-09 Thread Andy Savage
a skilled enough coder to fix this issue myself (in the C sources). But anybody who could help would be much appreciated. -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID

Re: [android-developers] Re: Playing live stream (RTP) in MediaPlayer

2010-05-31 Thread Andy Savage
the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Mon, May 31, 2010 at 9:26 AM, Ignas ignas.limanaus...@gmail.com wrote: There is a technical limitation to what SDP

Re: [android-developers] Re: Android Apps purchasing from anywhere in the world

2010-05-26 Thread Andy Savage
to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage 2010/5/26 Tomáš Hubálek tom.huba...@gmail.com On 26 kvě, 04:37, Andy Savage

Re: [android-developers] Re: Playing live stream (RTP) in MediaPlayer

2010-05-25 Thread Andy Savage
! -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Tue, May 25, 2010 at 2:19 PM, debelyoo jean.ross...@gmail.com wrote: Hi

Re: [android-developers] Re: RTP stream video decoding

2010-05-25 Thread Andy Savage
and stream' method. It produces a jerky but reasonable video quality. -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage

Re: [android-developers] Re: RTP stream video decoding

2010-05-25 Thread Andy Savage
thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Tue, May 25, 2010 at 6:12 PM, Andy Savage a...@bluewire.net.nz wrote: Hi there, I am working

Re: [android-developers] Re: Android Apps purchasing from anywhere in the world

2010-05-25 Thread Andy Savage
Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage 2010/5/26 Tomáš Hubálek tom.huba...@gmail.com This sounds terribly. I love AdSense in web pages as it is not annoying but sometimes even useful. But I really hate ads in software

[android-developers] Re: RTP stream video decoding

2010-05-24 Thread Andy Savage
that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Mon, May 24, 2010 at 2:44 PM, Andy Savage a...@bluewire.net.nz wrote: Hi everyone, I need a little bit of help from some experts out

[android-developers] RTP stream video decoding

2010-05-24 Thread Andy Savage
... but this is a really ugly solution. I would really appreciate if anybody could offer any help with this. Kind regards, Andy Savage -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage

[android-developers] Re: Playing live stream (RTP) in MediaPlayer

2010-05-24 Thread Andy Savage
Hi there, Any answer to this question? It's bugging me too. Jean, can you tell us what version you are testing this on? Have you tried 2.1? Cheers, Andy On May 6, 3:32 pm, debelyoo jean.ross...@gmail.com wrote: Hi dillirao, I don't receive onPrepared callback. After requesting the live

Re: [android-developers] Re: RTP stream video decoding

2010-05-24 Thread Andy Savage
ideas? -- The greatest challenge to any thinker is stating the problem in a way that will allow a solution - Bertrand Russell Andy Savage Cell Phone: +852 936 34341 Skype ID: andy_savage Linked In: http://www.linkedin.com/in/andysavage On Tue, May 25, 2010 at 5:06 AM, savanevery savanev

[android-developers] VP8 Video Codec

2010-05-24 Thread Andy Savage
Hi there, I am wondering if there is any timeframe for VP8 to be included into Android? Is it possible for me to build and use it myself using NDK to decode/encode video? Kind regards, Andy Savage -- The greatest challenge to any thinker is stating the problem in a way that will allow