ColoQ v1 1 3 1 1 3 Android Games Apk Free Download

Senin, 14 April 2014

ColoQ v1.1.3
Requirements: 2.2 and up
Overview: ColoQ is "New type 3D puzzle game".

The player controls cute characters on the cubic maps of divided by 3 lines horizontally and vertically



and the player stomp the monsters flat by rotating lines of the cubic maps and beat them.
If you could beat all monsters, you will clear the mission.
The game rule is "Turn-based".
If the the player is attacked by the monsters which are come closer and life points of the player becomes zero,the game
will be over.
The knack for the game is how the player moves,reads the movement of the monsters and uses the attributions of the map 
within one turn.
In the future, additional variety of stages of world concepts will be released.
Dont miss it!
Apparently, this game looks cute characters and world concepts game but this is full-fledged puzzle game.
Will you train the the back side of your brain by ColoQ?
・required OS: over Android 2.2(2.3recommended) ※required resolution: over 800×480 pixel
・recommended device:Xperia arc(Sony Ericsson)
※Android OS model released after June 2011
・unrecommended device:IS03(SHARP), ISW11HT(HTC)
※The reason is delay in processing in this title.
・answer movie of mission in Puzzle Mode.
Periodically,the answer will be added. Please check it out. 
http://www.shade.co.jp/supprt/CQ_ap01.html
・Additional missions
Limited time special offer!
Special Price of Additional 100missions is $2 USD(tax included)!
This additional 100 missions in snow and ice,called "Iceland" are for beginners.
Usual price of Additional 100missions is $4 USD(tax included).
You can purchase additional missions at "SHOP"in the game.
※Credit Card Payments Only.
※Carrier Billing of Mobile Phone Companies is NOT supported.

Whats in this version:
1.1.3
Fixed Tutorial No.4
We added more detailed explanation about frequently asked question:
How the player rotates the monsters on the cubes horizontally(Spin the side)

More Info:


Code:

https://play.google.com/store/apps/details?id=jp.shade.ColoQ

Download Instructions:
http://www.mediafire.com/?94t3awg649brras
http://min.us/mqbpSt8Ys
Read More..

Crazy Snake v1 4 1 1 4 1 Android Game Apk Free Downlaod

Rabu, 09 April 2014

Crazy Snake v1.4.1
Requirements: Android 1.6 and up
Overview: New Super Game "Crazy Snake"!!!

This is a new amazing version of a classical snake game!!!

You control one snake. Other snakes have artificial intelligence. Snakes can move to any direction!

Each level of the game consists of three sub-levels with their goals:
DEATHMATCH - kill all enemy snakes.
GROW FIRST - the first increase to a certain length.
DOMINATION - a team game. You should capture control points. The goal of the team - first to collect a specified number of points.

You will meet gigantic snakes and flying dragons at advanced levels!
Good luck!!!

More Info:


Code:

https://play.google.com/store/apps/details?id=com.cmyksoft.snake

Download: Released by chathu_ac
http://1hostclick.com/gkow4m9uhbw6/C...1.4.1.apk.html
http://rapidgator.net/file/15569723/...1.4.1.apk.html
Read More..

Android example ImageSwitcher

Jumat, 04 April 2014

A simple example to implement ImageSwitcher.

Example of ImageSwitcher

package com.example.androidimageswitcher;

import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup.LayoutParams;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.Button;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.ViewSwitcher.ViewFactory;

public class MainActivity extends Activity {

Button buttonNext;
ImageSwitcher imageSwitcher;

Animation slide_in_left, slide_out_right;

int imageResources[] = {
android.R.drawable.ic_dialog_alert,
android.R.drawable.ic_dialog_dialer,
android.R.drawable.ic_dialog_email,
android.R.drawable.ic_dialog_info,
android.R.drawable.ic_dialog_map };

int curIndex;

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

buttonNext = (Button) findViewById(R.id.next);
imageSwitcher = (ImageSwitcher) findViewById(R.id.imageswitcher);

slide_in_left = AnimationUtils.loadAnimation(this,
android.R.anim.slide_in_left);
slide_out_right = AnimationUtils.loadAnimation(this,
android.R.anim.slide_out_right);

imageSwitcher.setInAnimation(slide_in_left);
imageSwitcher.setOutAnimation(slide_out_right);

imageSwitcher.setFactory(new ViewFactory() {

@Override
public View makeView() {

ImageView imageView = new ImageView(MainActivity.this);
imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);

LayoutParams params = new ImageSwitcher.LayoutParams(
LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);

imageView.setLayoutParams(params);
return imageView;

}
});

curIndex = 0;
imageSwitcher.setImageResource(imageResources[curIndex]);

buttonNext.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
if (curIndex == imageResources.length - 1) {
curIndex = 0;
imageSwitcher.setImageResource(imageResources[curIndex]);
} else {
imageSwitcher.setImageResource(imageResources[++curIndex]);
}
}
});
}

}


<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:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".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" />

<ImageSwitcher
android:id="@+id/imageswitcher"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" />

<Button
android:id="@+id/next"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="next" />

</LinearLayout>


Read More..