Saturday, December 25, 2010

Dragon Clock Widget!!!!!

Download the Dragon Widget from the Market Now!!!!!

This is a beautiful clock widget showing the Yin and yang with dragons.

Search for Dragon Clock


Thursday, December 16, 2010

Save Battery on your Android Smartphone

Android based smartphones tend to drain the battery very fast and this can cause anger to women because the husband does not answer, well no necessarily to women but to everyone in general because today smartphones is the best friend for all  those people who can not live without FACEBOOK. In my experience as a user of smartphones but not addicted to Facebook here I have some suggestions to save battery.
1 .- Always keep the GPS off and turn it on only when necessary.
2 .- If you are not connected to a WI-FI or Wireless Router off this feature.
3 .- Keep the screen brightness down as much as possible but visible, do not use high gloss as it kills the battery very quickly.
4 .- Setting up synchronization of emails every hour it's a very good deal if you do not work for company or do not need the emails for productivity. I would suggest to set it up sync it manually and sync whenever you want to check the mail. This will save 15% to 25% of battery.
5 .- Use a wallpaper in black color as the display consumes less energy to produce dark colors.
6 .- If the version of your OS is Froyo (2.2) and you use a Task Manager, uninstall it, Froyo has the ability to manage applications without making your phone slow unless you have too many apps that needs to have internet access and you have them all on like Pandora, Facebook, IM and playing Angry birds.
7 .- Finally, do not use vibrator state (unless you need it emergency) as the smartphone uses a large amount of energy to produce the vibration.


This will kill your battery!!!

Wednesday, December 8, 2010

Hotmail Mobile for Chrome!


Hello everyone.

I just create a simple extension for Google Chrome. It is call "Hotmail Mobile" this extension will let you check your Hotmail email from the mobile website made by Microsoft. This is very when you just want to check your emails with out going to desktop version of Hotmail.

Tuesday, July 13, 2010

HOTMAIL APP FOR ANDROID


CODE FOR MY FIRST APP

java script

package com.mycompany.hotmail;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class hotmail extends Activity { WebView webview;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setPluginsEnabled(true);
webview.setWebViewClient(new HelloWebViewClient());
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("http://hotmail.com");

}
private class HelloWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
{
view.loadUrl(url);
return true;
}
}
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK) && webview.canGoBack()) {
webview.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
}