Monday, March 31, 2014

Simple example of Button and OnClickListener

Basic example of Button and OnClickListener to handle button click:

package com.example.androidbutton;

import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Button button1 = (Button)findViewById(R.id.button1);
button1.setOnClickListener(new OnClickListener(){

@Override
public void onClick(View arg0) {
Toast.makeText(getApplicationContext(),
"Button 1 clicked",
Toast.LENGTH_LONG).show();
}});

Button button2 = (Button)findViewById(R.id.button2);
button2.setOnClickListener(button2OnClickListener);
}

OnClickListener button2OnClickListener =
new OnClickListener(){

@Override
public void onClick(View v) {
Toast.makeText(getApplicationContext(),
"Button 2 clicked",
Toast.LENGTH_LONG).show();
}};

}


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context=".MainActivity" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="android-er.blogspot.com" />

<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 1"/>
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 2"/>

</LinearLayout>

Simple example of Button


Next:
- Determine event source in event listener

Read More..

Sunday, March 30, 2014

Draw bitmap programmatically for SurfaceView

This exercise create Bitmap programmatically, then draw the bitmap on SurfaceView by calling canvas.drawBitmap().

Draw bitmap programmatically for SurfaceView


I show two approachs in the example:
  • prepareBitmap_A:
    - Create a array of int, fill in data point-by-point, then createBitmap from the array.
  • prepareBitmap_B:
    - Create a bitmap, then fill in pixels by calling setPixel.

I also add code to display the (approximate) processing time in various steps for reference. The videos on the bottom show the result.

MySurfaceView.java
package com.example.androidsurfaceview;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.util.AttributeSet;
import android.view.SurfaceHolder;
import android.view.SurfaceView;

public class MySurfaceView extends SurfaceView {

private SurfaceHolder surfaceHolder;
private MyThread myThread;

MainActivity mainActivity;

long timeStart;
long timeA;
long timeB;
long timeFillBackground;
long timeDrawBitmap;
long timeTotal;

long numberOfPt;

public MySurfaceView(Context context) {
super(context);
init(context);
}

public MySurfaceView(Context context,
AttributeSet attrs) {
super(context, attrs);
init(context);
}

public MySurfaceView(Context context,
AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}

private void init(Context c){
mainActivity = (MainActivity)c;
numberOfPt = 0;
myThread = new MyThread(this);

surfaceHolder = getHolder();


surfaceHolder.addCallback(new SurfaceHolder.Callback(){

@Override
public void surfaceCreated(SurfaceHolder holder) {
myThread.setRunning(true);
myThread.start();
}

@Override
public void surfaceChanged(SurfaceHolder holder,
int format, int width, int height) {
// TODO Auto-generated method stub

}

@Override
public void surfaceDestroyed(SurfaceHolder holder) {
boolean retry = true;
myThread.setRunning(false);
while (retry) {
try {
myThread.join();
retry = false;
} catch (InterruptedException e) {
}
}
}});
}

private Bitmap prepareBitmap_A(int w, int h, long cnt){
int[] data = new int[w*h];

//fill with dummy data
for(int x=0; x<w; x++){
for(int y=0; y<h; y++){
//data[x + y*w] = 0xFF000000 + x;

if(cnt>=0){
data[x + y*w] = 0xFFff0000;
cnt--;
}else{
data[x + y*w] = 0xFFa0a0a0;
}

}
}
timeA = System.currentTimeMillis();
Bitmap bm = Bitmap.createBitmap(data, w, h, Bitmap.Config.ARGB_8888);
timeB = System.currentTimeMillis();
return bm;
}

private Bitmap prepareBitmap_B(int w, int h, long cnt){

Bitmap bm = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
timeA = System.currentTimeMillis();

//fill with dummy data
for(int x=0; x<w; x++){
for(int y=0; y<h; y++){
//data[x + y*w] = 0xFF000000 + x;

if(cnt>=0){
bm.setPixel(x, y, 0xFFff0000);
cnt--;
}else{
bm.setPixel(x, y, 0xFFa0a0a0);
}

}
}
timeB = System.currentTimeMillis();
return bm;
}

protected void drawSomething(Canvas canvas) {

numberOfPt += 500;
if(numberOfPt > (long)((getWidth()*getHeight()))){
numberOfPt = 0;
}

timeStart = System.currentTimeMillis();
Bitmap bmDummy = prepareBitmap_A(getWidth(), getHeight(), numberOfPt);

canvas.drawColor(Color.BLACK);
timeFillBackground = System.currentTimeMillis();
canvas.drawBitmap(bmDummy,
0, 0, null);
timeDrawBitmap = System.currentTimeMillis();

mainActivity.runOnUiThread(new Runnable() {

@Override
public void run() {
mainActivity.showDur(
timeA - timeStart,
timeB - timeA,
timeFillBackground - timeB,
timeDrawBitmap - timeFillBackground,
timeDrawBitmap - timeStart);
}
});
}

}

Modify activity_main.xml to add TextView to display processing time.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.androidsurfaceview.MainActivity" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:autoLink="web"
android:text="http://android-er.blogspot.com/"
android:textStyle="bold" />

<TextView
android:id="@+id/durA"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Duration: " />
<TextView
android:id="@+id/durB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Duration: " />
<TextView
android:id="@+id/durFillBack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Duration: " />
<TextView
android:id="@+id/durDrawBM"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Duration: " />
<TextView
android:id="@+id/durTotal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Duration: " />

<com.example.androidsurfaceview.MySurfaceView
android:layout_width="match_parent"
android:layout_height="match_parent" />

</LinearLayout>

MainActivity.java
package com.example.androidsurfaceview;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class MainActivity extends Activity {

TextView textDurA, textDurB, textDurFillBack,
textDurDrawBM, textDurTotal;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

textDurA = (TextView)findViewById(R.id.durA);
textDurB = (TextView)findViewById(R.id.durB);
textDurFillBack = (TextView)findViewById(R.id.durFillBack);
textDurDrawBM = (TextView)findViewById(R.id.durDrawBM);
textDurTotal = (TextView)findViewById(R.id.durTotal);

}

protected void showDur(long dA, long dB, long dFill, long dDraw, long dTotal){
textDurA.setText("Duration(ms) - A: " + dA);
textDurB.setText("Duration(ms) - B: " + dB);
textDurFillBack.setText("Duration(ms) - Fill Background: " + dFill);
textDurDrawBM.setText("Duration(ms) - drawBitmap: " + dDraw);
textDurTotal.setText("Duration(ms) - Total: " + dTotal);
}

}

MyThread.java refer to last exercise, "Create animation on SurfaceView in background Thread".


download filesDownload the files.

prepareBitmap_A:

prepareBitmap_B:

Read More..

Saturday, March 29, 2014

Android Design Patterns Interaction Design Solutions for Developers



Master the challenges of Android user interface development with these sample patterns
With Android 4, Google brings the full power of its Android OS to both smartphone and tablet computing. Designing effective user interfaces that work on multiple Android devices is extremely challenging. This book provides more than 75 patterns that you can use to create versatile user interfaces for both smartphones and tablets, saving countless hours of development time. Patterns cover the most common and yet difficult types of user interactions, and each is supported with richly illustrated, step-by-step instructions.
  • Includes sample patterns for welcome and home screens, searches, sorting and filtering, data entry, navigation, images and thumbnails, interacting with the environment and networks, and more
  • Features tablet-specific patterns and patterns for avoiding results you dont want
  • Illustrated, step-by-step instructions describe what the pattern is, how it works, when and why to use it, and related patterns and anti-patterns
  • A companion website offers additional content and a forum for interaction
Android Design Patterns: Interaction Design Solutions for Developers provides extremely useful tools for developers who want to take advantage of the booming Android app development market.


Read More..

Wednesday, March 26, 2014

Bubble Worlds apk Fast Download

Bubble Worlds apk
Bubble Worlds apk

Current Version : 1.8
Requires Android : 2.1 and up
Category : Casual
Size : 9.6M






Bubble Worlds apk Description

Bubble Worlds is a bubble games, but the way to play it is different. The number of bubbles used to eliminate bubbles on screen and get the banana is specific.
The levels seems easy, come and win 3 stars.

Features:
- easy to operate
- it is suitable for everyone, and play it at any time.
- five different worlds, e.g., forest, snow, mountain, and etc.
- up to 180 levels
- various kinds of props


Bubble Worlds apk Videos and Images





Read More..

Tuesday, March 25, 2014

Talking Tom Cat 2 1 0 v1 0 Ad Free Android Apk App

Talking Tom Cat 2 v1.0
Requirements: Android 2.1+
Overview: Tom is back with an all new adventure!

[break]
PLEASE NOTE: Before running the app for the first time you will be required to download additional 3-28 MB to get the best graphics quality for your device.
HTC Sensation users, your phone was shipped with an audio bug that can be fixed by installing a software update from HTC by following the instructions at http://tinyurl.com/updatehtc
-------------------------
Tom is back with an all new adventure! Tom is your cat that responds to your touch and repeats everything you say in a funny voice.
Since Tom is now an international celebrity, hes moved out of the alley and into a cool apartment.
But everything is not perfect for Tom, his neighbour Ben and pesters him constantly.
★★★ HOW TO PLAY ★★★
✔ Talk to Tom and he will repeat everything you say with a funny voice.
✔ Pet Toms belly or head and make him purr.
✔ Poke his head, belly or feet.
✔ Slap Toms face left and right.
✔ Pull or touch his tail.
✔ Press the fart button to see Ben fart and Tom grab his nose in disgust. After that Tom repeats what you say with his nose closed for a while.
✔ Press the bag button to make Ben pop a paper bag and scare Tom. Its hilarious.
✔ Press the ? button to make Tom pull random items from behind his back.
✔ Record videos of Tom and share them on YouTube, Facebook or send them by email or MMS.
Enjoy hours of fun and laughter with Tom.
★★★ FULL VERSION ★★★
✔ No ads.
✔ Press the phone button to make Tom play with the original Talking Tom app and repeat after himself in a funny loop.
✔ Press the feathers button to see Ben hit Tom with a pillow.
Download Instructions:
Ad-Free:
http://db.tt/dOUQNQw
Orignal :
http://www.filesonic.com/file/1732557014
Mirror:
http://www.wupload.com/file/116308912
Read More..

Monday, March 24, 2014

PALADOG 2 0 Apk Full Version Cracked

PALADOG 2.0 Apk Full Version (Cracked)

PALADOG 2.0 APK FULL VERSION (Cracked)
Req: Android 2.1+ Android Apk Free


PALADOG 2.0 Apk Full Version (Cracked).. Setting a new benchmark for castle versus castle titles, Paladog manages to push genre forward by giving you a greater grip on gameplay (9/10, Gold Award) (pocketgamer.co.uk), this is the new version of paladog APK Game that give you more exiting as a gamer..


PALADOG 2.0 Apk Full Version (Cracked) Features:
  • perfect game
  • A new hero Darkdog mode is added.
  • The new hero, Darkdog mode gets unlocked bt clearing the event stage that shows up after the 3rd wave of Paladog Survival Mode.
  • New exclusive game modes (Boar Dash/Rocking Horse Defense/Dungeon Defense) added.
  • Paladog and Darkdog shares some items (Gem/Enchant stone/Phoenix Feather) together.
  • Survival Friends mode, which you can have fun with your Facebook friends added.
  • New achievements with Gem award added.

Try it Now!!

Download PALADOG 2.0 Apk Full Version (Cracked)
Read More..

Sunday, March 23, 2014

Jail and Prison Inmate Search v1 276

Jail and Prison Inmate Search v1.276

Jail and Prison Inmate Search v1.276
Requirements: Android 2.1 and up

Jail and Prison Inmate Search v1.276 Overview: INMATES - Every available Inmate Search in America for all City and County Jails, State and Federal Prisons, ICE Detainees, Female Prisons, Native American Reservation Jails and Military Lockups.

FELONS â€" Information on Recent Arrests, Most Wanted, Warrants, Mug Shots, Sex Offenders, Escapees, Absconders and Death Row residents; every County and every state.
INMATE SERVICES â€" All available Visitation, Mailing, Phoning, Emailing, Commissary, Money Sending, Inmate Email services and important information.
JAILS AND PRISONS â€" Find Contact info, Locations, Websites, Maps, News, Videos, Employment information and more on over 9,000 Jails, Prisons, Juvenile Detention Centers and Terrorist Detention Camps.
SOCIAL - We have facebook Support Groups (english and espanol), Live Crime Feed News, Blogs and a Comment section on each of 9,000+ Facility Pages.
LEGAL - State and Federal Criminal Laws, Sentencing Guidelines and Grids, Courts, Law Enforcement, Probation, Parole, Criminal Defense Lawyers, Bailbondsmen, Criminal Background Checks, Court Record Searches and Reverse Cell Phone Checks.
YOU - We are adding new, updated, relevant information continuously, so do your updates with this app.


More Info:

Code:
https://play.google.com/store/apps/details?id=com.app_jailexchange.layout 


Download Instructions:
http://bitshare.com/files/938czlkf/jpis276p.apk.html

Mirrors:
http://rapidgator.net/file/6337624/jpis276p.apk.html
http://fiberupload.com/43io3oiahz87/jpis276p.apk
http://www.filefat.com/h07thji88oaz
Read More..

Friday, March 21, 2014

AUDIOID 1 1 0 Full APK


AUDIOID 1.1.0 Full APK. audioid is an advanced mobile electronic music rhythm composer for android, combining the mythical tr-808 sounds with real-time filters, effects, randomness while a live approach.

Read More..

Thursday, March 20, 2014

Download Engine v1 3 3 apk


This product is a truly unique and original web search tool, ideal for locating MP3 music !


Download Engine v1.3.3 market.android.com.downloadengine
This product is a truly unique and original web search tool, ideal for locating MP3 music, movies, videos and all types of files and applications. The aim is to speed up and enhance the overall web downloading experience. It will shortly become an indispensable application for all your downloading needs.
The very powerful search engine combines together all the results generated by some of the most popular file sharing providers namely, RapidShare, Megaupload, MediaFire, FileServe and Wupload. The file sharing providers are all utilized simultaneously to search for any type of file.

The entire set of links is retrieved and a minimum of 50 are displayed if they exist. This significantly increases the odds that your exact search requirements will be met in full and in a timely fashion. A link is then activated by the user, to complete the downloading process.

Several novel features are introduced, to maximize searching functionality and downloading efficiency:

All types of files, such as, MP3 music, movies, videos and applications, can be located by the search engine and subsequently downloaded by the user, quickly and effectively.
File extension specific searches are possible, in audio (mp3) and video (avi, mkv & mp4).

Segmented files with their constituent parts, e.g. movie episodes, stored at different host providers, are automatically located and the partitions are displayed in the correct order. Speedy downloading of the entire file is thus greatly facilitated, amplifying user satisfaction.

A simple menu invites the user to enter the file name to search, such as music, movie or application title, and the web file hosting provider(s). In addition, any special search requirements, such as the desired file extension, can be provided.

A large number of results are swiftly presented on a single screen that can scroll up and down, to enable the user to quickly identify and download the file.

Required Android O/S : 1.6+

Screenshots :
 

Download : 235Kb APK


Read More..

Wednesday, March 19, 2014

Personalization 360launcher 2 2 Android Apk

360launcher 2.2 (Android) Apk

360launcher 2.2 (Android)
Requirements: Android 2.1

360launcher 2.2 (Android) Apk Overview: 360 Launcher is an android based desktop enhancer.
It allows user to change the them that they want to use, along with handy widgets right on your desktop screen, so you never have to dig them again. Simple design with great usability makes your phone nothing like it before.

360launcher 2.2 (Android) Apk Features:
1. Impressive screen-switching effects
2. Lots of beautiful skin to choose
3. User defined folder to classify applications
4. Convenient to custom workspace screens
5. Built-in widgets to get weather information, task manager and quick-settings
6. Support to sort applications, hide app and new installation message

Change-log:
  • - clock weather gadget support multi-city inquiry;
  • - Weather increase in wind, wind direction and the index of living;
  • - Desktop support cross-screen display can be fixed screen orientation;
  • - lock screen support password settings;
  • - drawer classification support in the form of lists, and cross-shop;
  • - ranks the number of desktop drawer icon support custom;
  • - Support for desktop vertical screen wallpaper display;
  • - Optimization of a key lock screen uninstall process.
360launcher 2.2 (Android) Apk screenshot:
360launcher 2.2 (Android) Apk
360launcher 2.2 (Android) Apk

Code:
https://play.google.com/store/apps/details?id=com.qihoo360.launcher 

Download 360launcher 2.2 (Android)

Read More..

Tuesday, March 18, 2014

Photoshop Touch v1 1 1 Full Android Apk

Photoshop Touch full apk

Download Photoshop Touch For Phone

Bring the fun and creative possibilities of Adobe® Photoshop® software to your phone with Adobe Photoshop Touch for phone.

Transform your images with core Photoshop features. Combine images, apply professional effects, and share results with friends and family through Facebook and Twitter — all from the convenience of your phone. Enjoy most of the same features as the tablet version:

• Use popular Photoshop features, such as layers, selection tools, adjustments, and filters, to create mind-blowing images.
• Improve your photos using classic Photoshop features to bring out the best in your photography. Apply precise tone and color adjustments to your entire composition, a particular layer, or a select area.
• Create something other-worldly using painting effects, filter brushes, and so much more. With Photoshop Touch, the creative possibilities are endless.
• Make your images pop with graphical text. Apply strokes, add drop shadows and fades, and more.
• Take advantage of your device’s camera to fill an area on a layer with the unique Camera Fill feature.
• Quickly combine images together. Select part of an image to extract just by scribbling with the Scribble Selection tool. With the Refine Edge feature, use your fingertip to easily capture hard-to-select image elements, like hair.
• Start a project on your phone and finish it on your tablet* or back in Photoshop** at your desk using a free membership to Adobe Creative Cloud™.*** Your projects are automatically synced between your devices.
• Free membership to Creative Cloud provides 2GB of cloud storage.
• Work on high-resolution images while maintaining the highest image quality. Images up to 12 megapixels are supported.

Screenshot:
Photoshop TouchPhotoshop Touch
Photoshop TouchPhotoshop Touch

Whats New:
• Bug fixes
• Updated Synchronization engine

Download Adobe Photoshop Tauch v1.1.1 Apk
download now
Read More..

Monday, March 17, 2014

ROM Manager Premium v4 8 0 5 apk download android

Per scaricare le applicazioni da filesonic bisogna cliccare su slow download e aspettare circa 30 secondi , dopodichè inserire il codice riportato sulla figura e clicca AVVIA DOWNLOAD . Se volete scaricare più rom senza aspettare molto tempo dovete spegnere il modem e riaccenderlo in modo da cambiare ip oppure usare un proxy . Altrimenti dovete aspettare circa 15 min
Read More..

Sunday, March 16, 2014

WidgetLocker Lockscreen 2 3 2r1 Full APK


WidgetLocker Lockscreen 2.3.2r1 Full APK. customize your lock screen ! widgetlocker may be a lock screen replacement that puts you in management of the design, feel and layout of your respective lock screen.

Read More..

Saturday, March 15, 2014

Mini Motor Racing apk download v1 0 android

Per scaricare le applicazioni da filesonic bisogna cliccare su slow download e aspettare circa 30 secondi , dopodichè inserire il codice riportato sulla figura e clicca AVVIA DOWNLOAD . Se volete scaricare più rom senza aspettare molto tempo dovete spegnere il modem e riaccenderlo in modo da cambiare ip oppure usare un proxy . Altrimenti dovete aspettare circa 15 min
Read More..

Friday, March 14, 2014

6 Of The Best Android Games of 2010

The Android Operating system has had a great start, since its launch over 5 years ago, which is in part thanks to the open architecture. It is architecture like this which has attracted developers to the platform and manufacturers to produce many more devices based on the Android Operating system. Android from a users perspective is seen as firstly a phone as well as an Internet browser, Multimedia and App’s device. The two reasons coupled together has created a huge developer market. Developers around the world learned the basics of the SDK and in no time have created many quality apps, all within short succession of one another. Here we will concentrate on the very best games, which we have seen released during 2010. Though they are numbered, they are all good and it was difficult to rank some above others. Please use this piece as a guide for the best Android Games of 2010 so far.

1. Angry Birds, has been voted one of the best smartphone games with more than 7 million downloads on Android alone! The aim of the game is simply to fire birds at green pigs to recover your eggs. There are around a hundred levels which vary in difficulty. Warning: This game is highly addictive, and well worth a download.

2. Pocket Racing trumps the second position. Pocket racing brings classic arcade style racing to new heights and this one is really polished to give you hours of racing and if you complete the game, there are literally hundreds of other racing games, none quite as good as this one though.

3. Robo Defense is the successor to the well known Tower Defense game. If you have some time to spend on this exciting strategy game. Plan how you will stop the enemy with turrets of varying abilities. Robo Defense is one of the most addictive Android games.

4. Zenonia is RPG. When we say RPG, you might think of World of Warcraft or Zelda. This game is the Zelda series cloned and renamed Zenonia. With all the advancements in the graphics, as a result of technological advancements over the years the game play and effects have really benefited making Zenonia a great remake. I have no doubt that this game will give you countless hours of fun developing your little heroes throughout their difficult journey.

5. Prism 3D is not just another generic puzzle game. It has complexity not common in the simple “Tetris like” or “marble madness like” games. The game uniquely provides access to other players maps, adding endless customization to the user experience. If your not satisfied with that then you can create your own levels with ease.

6. Last but not least, is Panzer Panic. A fantastic little battle game, command your tanks and destroy the enemy with this time passing game, these little cartoonish tanks crawl around your screen, their guaranteed to provide much entertainment, or distraction from work?

A characteristic all of these games possess is simplicity and an action theme – this seems to be the recipe for a successful mobile game and there are certainly many other games that are on par with these ones, perhaps even better, get on Android Market and find your favorite game.
Read More..

Thursday, March 13, 2014

Plants Vs Zombies 2 1 9 2 MOD APK DATA Unlimited Gold Coins Free Full Version No Root Offline Crack Obb Download

Plants Vs Zombies 2 1.9.2 Apk Mod Full Version Unlimited Coins Download Gold Data Files

Plants Vs Zombies 2 1.9.2 Apk Mod Full Version Unlimited Coins Download Gold Data Files-iAndropedia 

Download All The Parts Provided,and click on extract on any of them,it will automatically extract all the parts. Install .apk File And place data folder in SDcard/Android/obb/ and Start playing. 


DOWNLOAD LINKS
Read More..

Wednesday, March 12, 2014

Instapaper 1 2 2 Full APK


Instapaper 1.2.2 Full APK.  A simple tool to save web pages to read later. Save web pages for later offline reading, optimized for readability on your tablet or phone screen. Critically acclaimed best blogs, newspapers and magazines! Great for long articles and blogs to find during the day and you would like to read but do not have the time when you find them. Save with Instapaper, then read later when you're commuting, in a meeting, or waiting in line.


Read More..

Tuesday, March 11, 2014

Townsmen 6 Free Apk Download

Free Android games : Townsmen 6

Townsmen 6 Free Apk Download

Description

With the Townsmen 6 Free game for Android you can experience the setting of the French Revolution. Here you have to build up your own villages and economic cycles to lead the Townies to a victory over the king.

Construct buildings, like fisher huts, farms, forges or bakeries to sustain a solid economic cycle. Catch fish, harvest fields, get water and use various natural resources that are needed to expand your influence. Upgrade your buildings, learn new ways to improve the productivity and spread out on the French territory. Control your Townies and assign them to different tasks to manage your settlement in the most efficient way, but respect their needs to keep them and their wives happy. Prepare the population by training soldiers and propagandists to fight the royal troops. But beware the kings wrath. He will send soldiers to attack you and to conquer your villages. Arm yourself or spread your word by propaganda, its your choice. Show the Townettes that you are a real Townsman.

Features:
- Complex build-up strategy game
- Detailed simulation of the Townies and Townettes
- Prepare the Townsmen for the battle against the French king
- Non-linear campaign plus open-end mode
- Map generator offers infinite replay value
- Overview map for strategic decisions
- Extensive tutorial and help functions for easy access
- Cute Townsmen graphics
- Weather effects affecting game mechanics
- Option to save progress at any time

Developer: HandyGames
Category: Games
Latest version: 1.1.0
Total versions: 1
Submitted: 25 Feb 2011
Updated: 20 May 2011

Version : 1.1.0
File Size : 13 Mb


Download Townsmen 6 Free Apk
Free Android games : Townsmen 6
Read More..

Monday, March 10, 2014

App Cache Cleaner Pro 2 2 1 Full APK


App Cache Cleaner Pro 2.2.1 Full APK.  Best Cache Cleaner - App Cache Cleaner, a quick tool for cached files a claim for compensation. One tap to clear all cached files for getting more avalable space. This tool can free a lot of storage memory of the phone. Free phone internal momeory, Get more internal ROM. It is an application that is crucial for anyone who has problems with memory management. If you run out of application storage, now can get more available storage space by clearing applications created cache files / data. You do not have to root the phone more!

Read More..

Saturday, March 8, 2014

Amazon Mobile v1 06 Apk Download

Amazon Mobile v1.06 Apk Download

Amazon Mobile v1.06 Apk Download

Description

Using this app you can search, compare prices, read reviews, and securely purchase from Amazon and many other merchants.

Once you snap a photo or scan a barcode the app will try to find a similar product on Amazon.com.

The app requires OS 1.5, 1.6, or 2.0 on the Droid.

Developer: Amazon.com
Category: Shopping
Latest version: 1.0.6
Total versions: 1
Submitted: 12 Sep 2010
Updated: 12 Sep 2010
File Size : 909 Kb

Download Amazon Mobile v1.06 Apk
Amazon Mobile v1.06 Apk Download
Read More..

Friday, March 7, 2014

The Sims FreePlay 2 6 11 MOD APK DATA Unlimited SP POINTS and MONEY Free Full Version No Root Offline Crack Obb Download

The Sims FreePlay 2.6.11 Apk Full Version Unlimited SP Download Data Files

The Sims FreePlay 2.6.11 Apk Full Version Unlimited SP Download Data Files-iANDROID Games 

Download All The Parts Provided,and click on extract on any of them,it will automatically extract all the parts. Install .apk File And place data folder in SDcard/Android/data/ and Start playing.Wait For us To Upload Data Files Or Download From Game.


DOWNLOAD LINKS
Read More..

Thursday, March 6, 2014

Dells first Chromebook is destined for schools


Come tomorrow, Dell will take the wraps off of its very first Chromebook, which has been dubbed the Dell Chromebook 11. Specifics are scant at the moment, but we do know that the laptop (which will likely have an 11-inch display) has been designed for use in schools. Fret not Chrome OS fans who no longer have recess to brighten your day, the company is expected to announce Chromebooks for businesses and the Average Joe next year.

Read More..

Wednesday, March 5, 2014

Trouserheart APK DATA

Trouserheart APK+DATA

Unsheathe your sword and journey through realm filled with monsters, traps, and treasures. Defeat monster mobs, slay bosses, hoard treasure, and upgrade your sword, shield and armor. Follow the trousers to the worlds end and claim what is rightfully yours!
Trouserheart is all about fun, instantly accessible, pick up and play hack�n�slash gameplay with playful art style and humorous tone. Super fluid controls with options for both fixed and floating modes make the game a joy to play for beginners and veteran gamers alike. The game offers two difficulty levels and even an optional perma-death mode for the bravest of adventurers!

Features:
- Meet peculiar enemies
- Hoard treasures
- Upgrade your sword, shield, and armor
- Defeat 10 unique bosses
- Gain more than dozen achievements
- Explore exciting environments
- Choose between two difficulty levels plus the perma death mode

Requires Android: 2.2 and Up

Version: 1.0.3

PLAY LINK: TROUSERHEART

Download Links:
TusFiles:
TROUSERHEART APK+DATA

DataFileHost:
TROUSERHEART APK+DATA PART1(100 MB)
TROUSERHEART APK+DATA PART2(20 MB)

ZippyShare:
TROUSERHEART APK+DATA

Torrent:
TROUSERHEART APK+DATA

Install APK,Place data folder in SDCard/Android/Obb/ and Play.
Read More..

Tuesday, March 4, 2014

SwiftKey X Keyboard 2 2 apk

Android typing has never been this easy.
SwiftKey X Keyboard makes typing much easier on your phone, replacing your touchscreen keyboard with one powered by smarter natural language technology.
SwiftKey X understands how words work together, giving much more accurate corrections and predictions than other keyboards. Very sloppy typing will magically make sense, and SwiftKey X also powerfully predicts the word you may want next.
SwiftKey X learns as you use it to make typing easier and even more accurate over time, and you can also personalize it using your Gmail, Facebook, Twitter or blog posts.
This app is among Androids best selling apps for a reason -- it genuinely transforms your keyboard, making typing a breeze and saving you hassle every day.
LANGUAGES SUPPORTED:
(enable up to three at once if youre multi-lingual)
English (US)
English (UK)
Afrikaans
Arabic
Basque
Bulgarian
Catalan
Croatian
Czech
Danish
Dutch
Finnish
French (FR)
French (CA)
Galician
German
Greek
Hebrew
Hungarian
Indonesian
Italian
Kazakh
Norwegian
Polish
Portuguese (PT)
Portuguese (BR)
Romanian
Russian
Slovak
Slovenian
Spanish (ES)
Spanish (US)
Swedish
Turkish
Ukranian
Support for QWERTY, QWERTZ, QZERTY, AZERTY, DVORAK, COLEMAK, Arabic, Bulgarian, Greek, Hebrew, Scandinavian, Russian and Ukrainian layouts.
~~~
Sometimes during upgrade Android will disable the keyboard. If this happens to you go to your phone settings and choose Language & Keyboard, and make sure there is a tick in the checkbox by SwiftKey X. Then access SwiftKey X settings to re-select it as default.
See our FAQ, support and ideas forum at http://support.swiftkey.net/
We take your privacy very seriously. This app does not learn from password fields and all language data learned on your device is stored on your SD card and never transferred.
Internet connection permission is required to install this app, so that language module files and cloud personalization data can be downloaded.

Download via Mediafire, Filesonic, Multiupload, DepositFiles, RapidShare, Wupload, HotFile, etc. Mirror 1 Mirror 2 Mirror 3
Read More..

Monday, March 3, 2014

Challenge off road 4x4 driving Android Apk all devices qvga wvga hvga wsvga

Download Challenge off-road 4x4 driving Android Apk all devices qvga wvga hvga wsvga





Challenge off-road 4x4 driving Apk
Participate in races on your SUV in a fascinating game Challenge off-road 4x4 driving.

Features:
  • Some modes
  • Various missions for performance
  • Excellent physics of control system
  • Adjustment of cameras
Android 2.0 and higher. [36.3 MB][apk] Download
Read More..