Saturday 15 December 2012

Eneloop KBC-L2BS


 Now popular and really useful items of mobile equipment have became portable batteries. I present now Eneloop mobile booster KBC-L2B

 If you use a iPhone or Android phone, you will have possession, that you go out on a charge  of your phone and you can notice that you cannot charge the phone on a go. You can take to the extra time carrying portable battery.
  
 Recently, smart phones and portable game machine, etc., mobile devices are rapidly spreading. Alone in overlooking the common line, most people are using music player, game consoles, and mobile phones. Just as in the house while ago, you can access to the Internet, you can play the games and listen music at mobile. But I want to be careful here, the "low battery". For highly functional compact devices, the battery life have gone backwards at mobile equipment in recent years. Once everyone must have experienced the sad situation I was trying to use emergency or important call, the battery that had expired.

  I bought this one for my phone. It have 2 USB sockets and you plug the standard iPhone USB cable into it.  It charges an iPhone4 two or more times from almost empty to a full charge in my experience, and because it's Eneloop, it keeps its charge for a long time (over six months easily) even if you don't use it.

 If you are a person who find your smartphone running down during the day and it's not convenient to get to a charger, then keep one of these in your bag. It will be a lifesaver sometimes. 


 Only minus comes that it doesn't have a indicator that show charge. Only one led that start blink when it is almost empty.

Details

  • Capacity 4.900 mAh.
  • 2 ways to recharge the mobile booster (AC adapter or USB port)
  • 2 x usb output terminal (iPad compatible)
  • AC Adapter World Auto Voltage (100V - 240V)
  • Charges most USB compatible devices (Phones, Portable music player, iPod, iPhone, Blackberry, game consoles and etc)
  • Comes with micro-USB attachment, AC adapter, USB cable and Sanyo eneloop mobile booster KBC-L2B (Li-ion) 
 
 Rating 4/5





Android app Development

How to build an Android app.


 There are two techniques that you can use to produce Android applications with a PC. The first uses the Android Software Development Kit (SDK). This lets you write raw code and helps you get it working in the Android environment. The second uses App Inventor, a Google Labs tool that's still in beta.

  It is a simple drag-and-drop environment that you can use to generate new applications made up of building blocks of code and media. It's an attempt to make application development possible for people who aren't hardcore coders, but it's not recommended for production environments.

  If you want try the full coded environment, we'll demonstrate how to produce a simple 'hello world' application. If you'd rather work in a GUI, we'll discuss App Inventor later on. Android apps are written in Java code, so you'll need a Java development kit installed on your PC. You also need an integrated development environment (IDE) so you can write and test the code.

  You also need to get your computer ready for the Android SDK. Start by installing a
Java Developerment Kit for your version of Windows.

 You also need to install Eclipse IDE for Java developers. When you install Eclipse it will check for the JDK. It's best to unzip Eclipse in the same directory as the JDK. If it can't find the JDK it won't install, but you can always move the required files to whatever directory the Eclipse installer is examining.


  With Eclipse up and running, you can download the Android SDK. Extract it to a safe directory on your PC and make a note of where it is.

Back in Eclipse you need to add the Android Development Tools. To do this, choose 'Help > Install new software'. Next to 'Work with', enter  https://dl-ssl.google.com/android/eclipse
 and click 'Add'. In the pane below this, check 'Development tools' and click 'Next'. Select 'Android DDMS' and 'Android Development Tools'. Click 'Next', accept the terms and restart.
Now you need to point the ADT plugin to where you extracted the Android SDK. In Eclipse choose 'Window > Preferences > Android'. Next to 'SDK location' click 'Browse' and locate the folder with the SDK. Click 'Apply' and 'OK'.

 

Android platform


 If you've set your system up correctly and your sdk is ready then you need to get at least one version of the Android platform. You can do this in the 
Android SDK and AVD Manager, which you can launch in Eclipse 
Choose 'Window > Android SDK and AVD Manager' to open it, then select 'Available packages' and tick the box next to 'https://dl-ssl.google.com/android/repository/repository.xml'.
 After a brief scan of the repository, you'll see the available components. Tick those that you want to install and clear the rest. The most important package to install is the latest version of the Android platform. You'll only need older ones if you plan to release your app and need to test it in a range of different versions. At this stage you can also clear the samples, Google APIs and USB driver. If you need any of these later, you can always go back and install them Click 'Install selected' and wait for the components to download. Verify and accept the new components if prompted and they will be added to your existing Android SDK folders.

Android virtual devices

 After downloading , you need to set up an Android Virtual Device (AVD) to run the computer. You can do this in the Android SDK and AVD Manager. Choose 'Window > Android SDK and AVD manager' and select 'Virtual devices'. Click 'New' and provide a name for your new device. Select the Android platform that you want to use as the target. Click 'Create AVD'. 

 Having downloaded a version of Android, you need to set up an Android Virtual Device (AVD) to run the computer. You can do this in the Android SDK and AVD Manager. Choose 'Window > Android SDK and AVD manager' and select 'Virtual devices'. Click 'New' and provide a name for your new device. Select the Android platform that you want to use as the target. Click 'Create AVD'.
 If you want to test your application under different versions of Android, you'll need to create a new virtual device for each version of the platform. You can also specify other parameters here, including the presence and size of an SD card. It's also possible to select a file to use as a virtual SD card. 

 You can opt to use the built-in skin (recommended) or specify the resolution that you want to use. Under 'Hardware', click 'New' and select a device if you want to add more virtual hardware.
For a simple AVD, you'll generally be fine sticking with the default options. You can now close the Android SDK and AVD Manager. 

 Create and emulate your Android app



 Assuming you now have all the software in place and you've set up a virtual device in the Android SDK and AVD manager, you can create a new project. In Eclipse IDE choose 'File > New > Project'. In the New Project wizard, select the 'Android' folder and choose 'Android project'. Click 'Next'. You now have a new window for your project details. 

 To start with, we'll set up a simple 'Hello world' application that just displays some text when launched. In the field marked 'Project name', enter HelloAndroid. For 'Application name' enter Hello, Android. For 'Package name' supply com.example.helloandroid and for 'CreateActivity', enter HelloAndroid. Click 'Finish'. These parameters are used to set up your project in Eclipse.

 The project name is also the name for the directory in your workspace that will contain your project files. Eclipse will create it for you. Assuming you accepted the default Windows workspace of C:\Users\[username]\workspace, you'll find the above directory at C:\Users\[username]\workspace\HelloAndroid.
 If you browse to this in Windows Explorer, you'll see a number of subfolders and files set up as part of the project



 The application name is the title of your app, which will be displayed in the Android device. if you Change title of your project or package , it will change the name of the app. You need to be a bit more careful with the package name.
 This is the namespace for the package where your source code resides. It needs to follow the rules for naming packages in Java. It also needs to be unique across the Android system, which is why a domain style package is used; 'com.example' is reserved for examples like this.
 If you develop an app that's published, you'll need to use your own namespace. This usually relates to the organisation publishing the app.
'Create activity' relates to the class stub generated by the plug-in. An activity is basically an action. It might need to set up a user interface if it needs one. We left other project fields at their default values, but it's useful to know what they do. 'Min SDK version' lets you set the minimum API required by your application.
 If 'Use default location' is ticked, your project will be saved in your workspace. You can opt to change this if you want to store the files elsewhere. 'Build target' is the platform target for your application. It's the minimum version of Android that it will run on.
 If you develop an app to run on an earlier version of Android, it should run on a later one too, but one developed for a later version of the platform probably won't run on an earlier version. For an example like this, the build target isn't critical as long as you can get your application to run in the emulator. It's more of a concern when you come to release an app.
Finally, the option to create the project from an existing example enables you to select some existing code to modify. You'll find this of more interest as you move on to greater programming challenges. 

Modify the code

 You should now see your project displayed in the Package Explorer, which is shown in the left-hand pane of Eclipse. Double-click 'HelloAndroid' to expand it. Also expand 'src' and 'com.example.helloandroid'. Double-click 'HelloAndroid.java' to see the code that's already been set up. In the main pane you should see the following text:
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(BundlesavedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
If you can't see all of this, try looking to the left-hand side of the pane and expanding any plus signs that indicate collapsed code. This defines your application without actually doing anything at this stage. To make it do some work, we need to add an object that will contain your text.
Having done that, we also need to specify the text. Below 'import android. os.Bundle;' add the following line:
import android.widget.TextView;
Also add the following above the two sets of closing curly brackets:
TextView tv = new TextView(this);
tv.setText("My First Android App"); setContentView(tv);
You can replace the text within the quotes to make your app say whatever you like. Check that the code in its entirety reads as the following, assuming you kept the displayed text the same:
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(BundlesavedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("My First Android App");
setContentView(tv);
}
}
 Save the changes to your code. You can now try it out in the Android emulator. In Eclipse, choose 'Run > Run > Android application'. The emulator launches. It can take a few minutes to boot into Android, so be patient. Once booted, your app should run automatically and you'll see a grey title bar with the app name in it. Below this, your chosen text is displayed.
Press the 'Home' button in the emulator to return to the Android home screen. Click the 'Applications' button to see the list of available applications. Among these you should see 'Hello, Android'. Select this to launch your app again

Test your app on an Android device  



 Now you've successfully run your app in the emulator, you can try running it on a real device. First you need to ensure that the USB driver is installed in the Android SDK and AVD manager. Choose 'Window > Android SDK and AVD manager > Available packages'. Select the Android repository, ensure that the USB driver is ticked and click 'Install selected'


 Connect your phone to a spare USB port and wait for Windows to detect it. In the New Hardware wizard, choose 'Locate and install drivers' and opt to browse your computer for the driver software. Browse to the 'Android SDK' folder and locate the subfolder for the USB driver. Windows should find and install it from here.
 Now you need to declare your app as debuggable. In Eclipse, expand your HelloAndroid application and double-click 'AndroidManifest.xlm'. Move to the 'Application' tab and select 'True' from the Debuggable dropdown list. Save the project.
 Go to your Android phone and choose 'Menu' from the home screen, then select 'Applications > Development' and enable USB debugging. Now you can reconnect it to your PC via USB. If you want to check that the SDK can see your phone, browse to the 'Tools' directory in your 'Android SDK' folder. Launch 'adb.exe' and you should be able to see your phone listed as 'Device'. 

 To launch your application on the connected phone, you need to choose 'Run > Run > Android application in Eclipse'. Now you have both the emulator and your phone connected, you need to specify which you want to run it on. Eclipse presents you with a Device Chooser that lists all the available devices and emulators. Select your phone from this list to install and run the app.
 Now you've produced and run a very basic application from raw code in an emulator and on an Android device, you can begin to learn how to develop your own. It helps to have some knowledge of Java programming, but you'll also find a number of stepped tutorials in the Android Developer Resources pages.
 These include introductions to the different views available to apps and how to implement them. You'll also find ways to use common resources like location information, and find out how to debug your work.
 You can find a full list of sample code on these pages too. This will help you to work through example applications that you can modify to your own ends. These include games such as Snake and Lunar Lander, plus utilities like Note Pad and Wiktionary. You can find even more samples at Apps-for-Android





Friday 14 December 2012

Kingsoft Office 5.2.1



 All is FREE! Allow you View & Edit Office files Anywhere and Anytime.
Kingsoft Office is the only mobile Office with full-features FREE. Support for running on Android 2.1 and above system. User-friendly & nice UI interface! Users from over 200 countries and regions around the world are using it. The Average Rating of Kingsoft Office is up to 4.6 stars! Whether in a small cell phone screen or on a large screen on the Tablet, Kingsoft Office has a superior performance! (from android market)


 Kingsoft office 5.2.1 for android let you open, edit, and create documents, spreadsheets, and presentations right on your smartphone or tablet. And it's really noteworthy that just not for its Microsoft Office compatibility, but also its price: the app is FREE.
 How good could be free office suite? In that case, it have pretty good. The app supports Word, Excel, and PowerPoint file formats, so that means you could be able to open and edit any existing documents that you want to do.  It also lets you create these kinds of documents from scratch, saving them either to your device or any cloud-storage service.
 I'm really impressed by Kingsoft Office's interface. It employs tab for easy switching between multiple open documents. And it just plain menu looks nice on a tablet.
 Indeed, if you've been wondering whether a tablet can really take the place of a laptop,   Kingsoft Office adds a big check mark to the "yes!" column. For any serious document work,  I think you really want to pair it with a Bluetooth keyboard.

 For my money (in this case no money), the best option as far is Kingsoft's office 5.2.1.


Download Office 5.2.1 for Android FREE.



Wednesday 12 December 2012

Franco Kernel Updater












One of the best ways increase your rooted Android device performance is install a new kernel. And now belongs to top-100 paid apps at the Android market.
Once you downloaded Franco Kernel Updater, the app will the help you download and flash a new kernel and tweak it’s settings.  Now, we’re not just talking about adjusting the clock speed of the device.  Once you flashed Kernel, you can change voltages, over- or under- clock, choose more or less aggressive governor, disable cores, set custom power modes, and adjust color control.
It also allows you to backup your Kernel before you flash it. And if things don’t run smoothly, you can just restore your old Kernel.  This app also  have two widgets that keep you informed, one showing system info and other showing calibrated voltages.


App is beautifully designed in the Holo style, fully following the correct guidelines from Google. This makes it really easy to navigate and operate. You have two windows from which you can install Franco or Lean kernel respectively. Each window shows you the latest version of the kernel (both stable and nightly build), as well as your currently installed kernel. The absolute killer feature of this app is the ability to download and install the kernel of your choice with the touch of only one button. This means you can skip all of the hassle of downloading a kernel zip file on your computer and having to transfer it straight to your phone, then manually flash it in recovery.

You can Download program from Android market. There is Free version with only feature to upload kernel in your device and Full version with access all of the options. Price is now 5.399won.

Download:

Full version

Free version




 Rating 5/5

Wednesday 28 November 2012

Some interesting Blogs

There is many interesting Blogs for Android devices, apps, programming etc.
And if you are interested to see another blogs, I collect few interesting Blogs to you. 


Saturday 24 November 2012

How to find hidden Developers option at Android 4.2:


How to find hidden Developers option at Android 4.2:


To access the Developers Options menu, and get things like USB debugging, do the following:
  1. Open the Settings menu
  2. Go down to the "System" sub-section of the settings menu at the bottom
  3. Hit "About Phone [or Tablet]"
  4. At or near the bottom, you should see the "Build number" header
  5. Tap this area about 10 times, and the Developer Options menu should appear




Friday 23 November 2012

How to update your Nexus 7 to Android 4.2?

If you like update Your Nexus 7 to latest Android 4.2 version, there is two ways. 

First, OTA update; 
It is easiest way to do it, if you don't have rooted and change your kernel or modify system files. OTA update works fine even if you have just rooted your device but doesn't change your kernel or modify system or prop files.  Update doesn't remove root. You can try this way first, even you don't have sure. If update found problem it doesn't update your system.

Second, Manual update;
This option becomes only change if you have rooted and modified or/and change your kernel.  That was my way.  There is several ways to do it. I am noobie with Android system so I don't like start doing replace files or modify them. I thinked there must be some much easier way to do it, for people thou don't know programming or system manipulating. 


After little internet digging, I found really useful utility kit that made everything to me very easy. "EZ Update Android 4.2/CWM/Root/Save Data/1 Click" safe your day if your OTA update fail. This utility is really easy to use, but YOU NEED READ Read Me file before you start do anything. You and only you are responsible what your device happen, no one else. You use that program your own responsibility!

Program will flash (or re-flash) the Android 4.2 update (Including system, kernel and boot-loader). It will flash latest 4.2 compatible Clockwork-mod Touch Recovery also. And then it will get you full set up to re-root your Nexus 7 within the latest CWM.

It will NOT erase your data and you DON'T need to be on a stock ROM to run this utility, but it is recommended when you get into CWM recovery for obvious reasons.


If you have any issues and get caught at Google splash screen. You can use Power, Vol - to hard shut down the tablet, then Power, Vol +, Vol - to get into the boot-loader. From here you can install the factory images from Google. Once you're back up and running, you can run this tool to gain root and CWM back.
 


Download Program PLEASE READ the Read Me!!