[android-developers] Re: How to remove app from the Market

2009-02-16 Thread Stjepan Rajko

On Mon, Feb 16, 2009 at 11:27 AM, A T  wrote:
> Is there a way to remove my application from the Market? I tried
> "Unpublishing" it but after a few hours it just gets re-published... Is
> there a way to permanently delete?

I think you are doing the right thing, but it appears that the Market
may be broken at the moment:

http://groups.google.com/group/android-developers/browse_thread/thread/41ead1bc456d1276

Stjepan

--~--~-~--~~~---~--~~
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Recording Audio

2009-01-11 Thread Stjepan Rajko

On Sun, Jan 11, 2009 at 12:24 AM, Tez  wrote:
>
> Hi,
>
> I want to record audio from the emulator using the mic. Can anyone
> send me some sample code on how to do this.
> Also, I want to know whether it is possible to redirect this mic o/p
> to a memory buffer or network socket.
>

I am developing an app for recording audio annotations during an event
(the annotations get recorded as audio files on the sdcard):

https://sourceforge.net/projects/rehearsalassist/

The source is available in the SVN repository.  The following two
files (RehearsalRecord.java and RehearsalPlayback.java) deal with
recording/playback:

http://tinyurl.com/ax8ju5
http://tinyurl.com/7rsfcf

I don't know about the redirection part.

HTH,

Stjepan

--~--~-~--~~~---~--~~
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: how to reference a string resource from within another string resource

2009-01-07 Thread Stjepan Rajko

On Wed, Jan 7, 2009 at 6:05 AM, Mark Murphy  wrote:
>
> Stjepan Rajko wrote:
>> Is it possible to reference a string resource from another string
>> resource?  I am trying to do something like:
>>
>> My App
>> Welcome to @string/app_name
>
> This is not supported, AFAIK. You would need to assemble the "welcome"
> message in Java, perhaps using string formats:
>
> String.format(getString(R.string.welcome), getString(R.string.app_name));
>
> for:
>
> Welcome to %1$s
>

Thank you.

Stjepan

--~--~-~--~~~---~--~~
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] how to reference a string resource from within another string resource

2009-01-07 Thread Stjepan Rajko

Hello,

Is it possible to reference a string resource from another string
resource?  I am trying to do something like:

My App
Welcome to @string/app_name

I am also curious about referencing android/versionName within the
resource, e.g.
Welcome to @string/app_name, version
@android:versionName

I can't get either of the above to work.  If anyone can give me any
suggestions, I'd appreciate it.

Thanks,

Stjepan

--~--~-~--~~~---~--~~
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---