[android-developers] Re: Can I get sued for using Android Caller ID?? -Please answer

2010-03-08 Thread monmonja
First of all thanks for using my example :) On the patent thing, if you have a good idea similar to something that is patented, i suggest you to put your app on other country besides US or the list of countries that have the patent (you can google search them). One reason is that the patent system

[android-developers] Re: android code for displaying signal strength of wifi access point

2009-12-10 Thread monmonja
WifiInfo will help you See http://almondmendoza.com/2009/05/25/permissions-journey-access_wifi_state/ for how go get WifiInfo monmonja http://almondmendoza.com/ On Nov 29, 8:26 am, Sarath Krishna sarathkrishn...@gmail.com wrote: hii..I need to develop an application which scans thewifiaccess

[android-developers] Re: Force locale for an application, bug in 2.0?

2009-11-12 Thread monmonja
Add android:configChanges=locale to your activity nodes on the manifest file activity android:name=.Main android:configChanges=locale android:label=@string/app_name / Update the post on http://almondmendoza.com/2009/01/28/force-localize-an-application-on-android/ :) monmonja On Nov 10, 3:43 pm

[android-developers] Re: open-source games

2009-09-02 Thread monmonja
try searching on http://www.google.com/codesearch monmonja http://www.almondmendoza.com On Sep 1, 5:17 pm, sipungora kostya...@googlemail.com wrote: Hi, does somebody know site(s) with open-source games for Android? Thanks in advice

[android-developers] Re: ADC 2 Submission Site -- Now live

2009-08-30 Thread monmonja
i had submitted an app on adc but it does not show on the listing but when i try to reupload the app, it said there is something the same on the market. Is this normal? can i update my app? tnx On Aug 28, 1:23 am, Dan Morrill morri...@google.com wrote: We are not planning to extend the

[android-developers] Saving array of Path on Bundle in onSaveInstanceState

2009-06-10 Thread monmonja
I have an app that let users draw and i'm using canvas with Path (android.graphics.Path). After drawing, ill let them email what they have drawn, and this i believe will trigger onDestory, then after they finish with the email they will return to the app and thus calling onCreate. My question is

[android-developers] Re: Shipping to Hong Kong

2009-05-20 Thread monmonja
a lot there, i brought mine in US coz it was cheeper even with the shipping. Hope this clears up your question. Monmonja http://almondmendoza.com On May 20, 11:51 pm, Dr.Luiji luigi.berton...@gmail.com wrote: Hi LeanAngel, This is a real problem. I've had the same problem few months ago

[android-developers] Re: Shipping to Hong Kong

2009-05-20 Thread monmonja
just saw this post http://www.itechnews.net/2009/05/19/htc-magic-launch-event-hong-kong/ its HK$4680 (US$604). Monmonja http://almondmendoza.com On May 21, 1:22 am, monmonja almondmend...@gmail.com wrote: Hi LeanAngel, I'm the developer of My Battery Status and i'm currently living

[android-developers] Re: How to get the current battery level of the device using an API call

2009-03-23 Thread monmonja
Have you tried something like int level = this.getIntent().getIntExtra(level, 0); int scale = this.getIntent().getIntExtra(scale, 100); if((level * 100 / scale) 70){ // dl } monmonja http://almondmendoza.com/2009/01/04/getting-battery-information-on-android

[android-developers] Re: Android SDK v1.1 due soon?

2009-02-09 Thread monmonja
You can download it from google but just not on the download page. I know its not there for a reason but if you really want to try 1.1 http://almondmendoza.com/2009/02/09/android-sdk-11/ I would suggest anyone to wait for the one on the download page coz they might still change something or fix

[android-developers] Re: changing string resources

2009-01-28 Thread monmonja
Try this one String languageToLoad = cn; Locale locale = new Locale(languageToLoad); Locale.setDefault(locale); Configuration config = new Configuration(); config.locale = locale; getBaseContext().getResources().updateConfiguration(config, getBaseContext().getResources().getDisplayMetrics());

[android-developers] Re: Is it possible to get incoming caller id (phone number) in real time ?

2009-01-22 Thread monmonja
/2009/01/22/get-phone-state-when-someone-is-calling-using-broadcastreceiver-example/ Monmonja http://monmonja.com/blog/ On Jan 9, 12:16 am, pinguin e...@vinacom.de wrote: now or in the futured SDK ? Please let me now. If not i will stop to develop on amdroid

[android-developers] Re: How to force screen backlight brightness change immediately?

2009-01-05 Thread monmonja
I've done this using IHardwareService, you guys may refer to this link http://almondmendoza.com/2009/01/05/changing-the-screen-brightness-programatically/ Hope it helps Almond http://almondmendoza.com On Dec 27 2008, 2:16 am, Daniel velaz...@gmail.com wrote: I'm also looking for a solution

[android-developers] Re: Change screen brightness immediately

2009-01-05 Thread monmonja
try http://almondmendoza.com/2009/01/05/changing-the-screen-brightness-programatically/ Hope it helps Almond http://almondmendoza.com On Dec 11 2008, 1:55 am, junker37 junke...@gmail.com wrote: Does anyone know how to change thebrightnessimmediately? I'm looking for a response