[android-developers] Is AlarmManager to be caused a serious security hole?

2011-01-17 Thread Hiro OKUYAMA
We can make and run "cron-like program" by the AlarmManager on Android. But I think those are dangerous for we. Because AlarmManager as stealthy as follows: * Not resident * Not shown in the Task Manager * No way to stop it (expect uninstall caco-program). * No way enumerate tasks that AlarmM

[android-developers] Re: When will GoogleMap "3D" API be released?

2010-12-20 Thread Hiro OKUYAMA
Hi TreKing, Thanks for response. I understood it. > This was discussed recently in another thread - the response was there is no > ETA. I searched this discussion by keyword "Map". However, I couldn't find the thread. Please tell "another thread" URL. -- You received this message because you

[android-developers] When will GoogleMap "3D" API be released?

2010-12-19 Thread Hiro OKUYAMA
Google Map 5.0 was released. Included many new features as follows: * Vector Rendering * Rotation * 3D Viewing * etc I think that the next Google Map API becomes a very big changes. Please tell the plan and schedule. Is Google Map 3D API release as an upgrade or "new other SDK"? -- You rec

[android-developers] AyncTask's cancel bug was fixed in Gingerbread?

2010-12-15 Thread Hiro OKUYAMA
http://groups.google.com/group/android-developers/browse_thread/thread/07ea01892ee7a5f4/9f71428217c2cd44?# This AyncTask's cancel bug was fixed in Gingerbread? Romain said, > There was a race in the cancel() code that we fixed post-froyo. > Post-froyo means after froyo, so not in froyo :) How a

[android-developers] About AdSense for Mobile Applications

2010-04-26 Thread s-hiro...@hirookaservice.co.jp
Nice to meet you. It is Syougo Hirooka. I am Japanese. Hereafter, App of Google Android is made. All App is opened to the public free of charge. The beta version of AdSense for Mobile Applications It is thought that it used it. How can I obtain the beta version of AdSense for Mobile Applicati

[android-developers] about "AdSense for Mobile Applications"

2010-04-26 Thread s-hiro...@hirookaservice.co.jp
Nice to meet you. My Name is Syougo Hirooka. I am Japanese. Hereafter, App of Google Android is made. All App is opened to the public free of charge. The beta version of AdSense for Mobile Applications It is thought that it used it. How can I obtain the beta version of AdSense for Mobile Appl

Re: [android-developers] Re: custom keyboard

2009-12-29 Thread Dai Hiro
, schwiz wrote: > Ok that was the problem thanks.  This leaves me with two questions, > how do I enable the keyboard without making the user do it, and how do > I make it the default keyboard for my app.  Thanks for the reply! > > On Dec 28, 10:06 am, Dai Hiro wrote: >> Hi, >>

Re: [android-developers] custom keyboard

2009-12-28 Thread Dai Hiro
Hi, Did you activate it in Locale & Text Settings ? Kwaku On Sun, Dec 27, 2009 at 11:53 PM, schwiz wrote: > I am wanting to add a custom keyboard for my app, I was taking a look > at the softkeyboard example on the included sample code in the SDK. > When I install it in the emulator it isn't sh

Re: [android-developers] Virtual keypad in landscape mode

2009-12-22 Thread Dai Hiro
Hi, I guess your are testing your software with the emulator. You should set the option 'keyboard support' to false on your avd in this case. Dai On Tue, Dec 22, 2009 at 11:28 PM, Yogi wrote: > Hi , >    I am working currently on an application which is in landscape > mode by default. I want th

[android-developers] interrupt dialog

2009-08-03 Thread Hiro
e(); } } Thanks, Hiro --~--~-~--~~~---~--~~ 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, se

[android-developers] Re: JIS conversion is ignored!

2009-07-03 Thread Hiro
Hi, Dan-san >which will construct a string by interpreting the bytes in the default >encoding. The default encoding on Android is UTF-8, so this is >probably not what you want. I do understand the reason that a part of the input string is corrupsed. Thanks, Hiroyuki --~--~-~--~~

[android-developers] Re: JIS conversion is ignored!

2009-06-30 Thread Hiro
I can resolve this by omitting the input parametter in getBytes as follows. unicode = new String(unicode.getBytes(), "ISO-2022-JP"); It seems to me getBytes("ISO-2022-JP") won't work... Thanks, Hiro --~--~-~--~~~---~--~~ You received thi

[android-developers] Re: JIS conversion is ignored!

2009-06-28 Thread Hiro
I've changed as follows. unicode = new String(unicode.getBytes("ISO-2022-JP"), "ISO-2022-JP"); However it won't convert the string as I expect... Thanks, Hiro --~--~-~--~~~---~--~~ You received this message because you are s

[android-developers] JIS conversion is ignored!

2009-06-25 Thread Hiro
s occurred? public String JIS2UNICODE(char[] jis) { String unicode = new String(jis); try { unicode = new String(unicode.getBytes("ISO2022JP"), "ISO2022JP"); } catch (Exception e) { unicode = "undefined"; }

[android-developers] Re: How to display Japanese character on TextView

2009-06-24 Thread Hiro
I mistook the word of locale... Currently I use Android SDK 1.1, should I upgrade it to v.1.5? It seems to me there is no "locale" in "settings" on Android emulator... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: How to display Japanese character on TextView

2009-06-24 Thread Hiro
> it's just a suggestion, u can change the locale, that wud print everything > in japanese... Would you tell me how to change the location for Android emulator? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android

[android-developers] How to display Japanese character on TextView

2009-06-24 Thread Hiro
display Japanese on TextView? Thx, Hiro --~--~-~--~~~---~--~~ 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 fro

[android-developers] Re: Accessing System Brightness

2009-06-05 Thread Hiro
This is indeed frustrating. however, there's a funny new wrinkle whenever I use the new cupcake-approved sugar-free method, the brightness stays after I go back to the home screen. (yay) I seem to have problems when brightness gets too low though (IE, cant do anything with the unit ... obv

[android-developers] ISO2022JP->UTF-8(unicode) conversion

2009-06-03 Thread Hiro
HI, "HT-03A" will be release to the market in Japan, I'm lookig forward to it. Then I wonder whether String class support following charset type. String unicode = new String(jis); try { unicode = new String(unicode.getBytes("ISO2022JP"), "ISO2022JP"); } catch (Exception e) { unicode =

[android-developers] Re: audio recorder

2009-06-03 Thread Hiro
ha! I didnt see the second response until I'd posted mine... RECORD_AUDIO permission solved it!!! Thanks! On Jun 3, 10:53 pm, Hiro wrote: > I seem to be having the same issue I've been playing with > different buffer sizes, but this is where I'm at > >    

[android-developers] Re: audio recorder

2009-06-03 Thread Hiro
I seem to be having the same issue I've been playing with different buffer sizes, but this is where I'm at recorder = new AudioRecord (MediaRecorder.AudioSource.MIC, AUDIO_SAMPLE_FREQ, AudioFormat.CHANNEL_CONFIGURATION_MONO,

[android-developers] Re: How to detect current screen is vertical or horizontal?

2009-06-03 Thread Hiro
not sure how much help this is, but i'm using it on a canvas i have Integer width = canvas.getWidth(); Integer height = canvas.getHeight(); // Check Orientation so we know which grid to use

[android-developers] About dexdump for beta0.9

2008-08-25 Thread Hiro
In old version, android supplied a tool named dexdump for developer. But it can't handle the newest dex file. Why had it been removed from new version? And when can we get the new version dexdump ? And the new xml file had been changed too. When can we get the new axml2xml.pl tools for parsing it?