Showing posts with label in. Show all posts
Showing posts with label in. Show all posts

Thursday, December 22, 2016

Summoners War 1 3 8 APK

,
Com2uS has released an update for its popular Role Playing game Summoners War in the Google Play Store that adds language Setting Menu, fixed skills errors and bugs. Following version 1.3.8 update, you can now play Summoners War in Spanish, Portuguese, and Russian.

Summoners War

Summoners War has aspects of Pokemon, world of warcraft, and anime. The game lets Collect as many monsters as you can from a collection of over 400 monsters with different Attributes of Fire, Water, Wind, Light, and Dark. The collection of monsters are awesome although there are some that just dont need to be added into the collection.

This is one of the best games for mobile. Summoning creatures, fairies, werewolves, and Ninjas is one of the coolest things you can do. If you are a kid this game may take some time to get good at. The gameplay concept itself is very enjoyable though, youll always find many things to do. Yes, it fun and there are plenty of things to do, from leveling and evolving your monsters to completing the story.

If you like action and adventure, this game is for you. Its available for free and absolutely no money is required to play. However, it has in-app purchases. If you want to level up faster and go for some rare monsters quicker there is the option to put money in, but its not a requirement like other top grossing games.

The update is live right now if you have the app installed and if youve been waiting to grab the latest Summoners War APK file, now is the time to do.

Have you just downloaded? What do you think of this newly released update and do you like the changes the Dev Team has made to its Android app?

Requires Android: 2.3+
Download File: 12MB (Summoners War APK)

Summoners War APK
Read more

Tuesday, December 20, 2016

Finally Motorola Moto G is available in India for Rs 12499

,
After lots of waiting for the perfect budget android mobile Motorola Moto G is now availble in India.Motorola is releasing Moto G in flikart Indias Top online shopping store.the price of  Moto G is quite low as every guessed,the 8GB variant cost 12499 rupees and 16GB variant cost 13999 rupees in India.The cost of this mobile is huge success of this mobile with high end specs.They also mentioned some all sales service center list for motorola moto g in India.Motorola Moto G is available for sales from 12am of Febuary 6th.

Also read: Motorola moto G specification & features



Motorola Moto G 8GB(Rs.12499)-Buy from flipkart

Motorola Moto G 16GB(Rs.13999)-Buy from flipkart


search results :
Motorola Moto G buy online
Motorola Moto G in india
Motorola Moto G 8 gb price in india
Motorola Moto G 16 gb price in india
Motorola Moto G flipkart buy online
Motorola Moto G service center names in chennai
Motorola Moto G service center list in india


Read more

Tuesday, August 23, 2016

Brothers in Arms 3 1 0 2b APK

,
The popular World War II first-person shooter game Brothers in Arms 3 for Android received an update this week in the Google Play Store with some improvements and minor bug fixes.

Brothers in Arms 3

Published by Gameloft, Brothers in Arms 3: Sons of War is an arcade game. The game set during World War II, and sees you jumping into the boots of Sergeant Wright, challenged with leading his band of brothers through the war around them. Now, the game is available on the iOS, Android and Windows Phone.

An excellent game, well balanced and totally addictive. You know like everyone says this is a knock off of frontline commando, but this is better than frontline commando. This game ended up being way better than expected. It has a lot of explosions and brothers to help you on the mission, and the have consumables rocket launcher and sniper. The fact that you can play offline as well is a plus. Yes, you can play this game with no connection required though having it fun also.

The latest version of Brothers in Arms 3 is live on the Google Play Store, so its a good idea to have a look and see if yours is ready. And for those who cant get it on the Play Store, you can download Brothers in Arms 3 1.0.2b APK at the link below.

Have you just downloaded? What do you think of this newly released update? If you have a problem with this game you can contact the dev, they will get back to you and quick using their in-game support.

Requires Android: 4.0+
Download File: 34MB (Brothers in Arms 3 APK)

Brothers in Arms 3 APK
Read more

Sunday, April 6, 2014

Clip Board Development in Android Development

,
This example shows how to use clipboard manager to copy text/intent/url in android.
Algorithm:
1.) Create a new project by File-> New -> Android Project name it ClipBoardExample.
2.) Write following into main.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <Button android:id="@+id/copy_styled_text"
            android:layout_width="wrap_content"android:layout_height="wrap_content"
            android:onClick="pasteStyledText"
            android:text="@string/copy_text" />
        <TextView
            android:id="@+id/styled_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:textStyle="normal" />
    </LinearLayout>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <Button android:id="@+id/copy_plain_text"
            android:layout_width="wrap_content"android:layout_height="wrap_content"
            android:onClick="pastePlainText"
            android:text="@string/copy_text" />
        <TextView
            android:id="@+id/plain_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:textStyle="normal" />
    </LinearLayout>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <Button android:id="@+id/copy_intent"
            android:layout_width="wrap_content"android:layout_height="wrap_content"
            android:onClick="pasteIntent"
            android:text="@string/copy_intent" />
        <Button android:id="@+id/copy_uri"
            android:layout_width="wrap_content"android:layout_height="wrap_content"
            android:onClick="pasteUri"
            android:text="@string/copy_uri" />
    </LinearLayout>
    <Spinner android:id="@+id/clip_type"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawSelectorOnTop="true"
        android:prompt="@string/clip_type_prompt"
    />
    <TextView
        android:id="@+id/clip_mime_types"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:textStyle="normal"
        />
    <EditText
        android:id="@+id/clip_text"
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight="1"
        android:textStyle="normal"
        />
</LinearLayout>
3.) Create and write following into res/values/arrays.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="clip_data_types">
        <item>No data in clipboard</item>
        <item>Text clip</item>
        <item>Intent clip</item>
        <item>Uri clip</item>
    </string-array>
</resources>
4.) Write following into res/values/strings.xml:
<resources>
    <string name="app_name">ClipBoardExample</string>
    <string name="hello_world">Hello world!</string>
    <string name="menu_settings">Settings</string>
    <string name="title_activity_clip_board_example">ClipBoardExample</string>
        <string name="copy_text">Copy Text</string>
    <string name="copy_intent">Copy Intent</string>
    <string name="copy_uri">Copy URI</string>
    <string name="clip_type_prompt">Clip Type</string>
    <string name="styled_text">Plain, <b>bold</b><i>italic</i><b><i>bold-italic</i></b></string>
</resources>
5.) Run for output.
Steps:
1.) Create a project named ClipBoardExample and set the information as stated in the image.
Build Target: Android 4.0
Application Name: ClipBoardExample
Package Name: com. example. ClipBoardExample
Activity Name: ClipBoardExample
Min SDK Version: 11
2.) Open ClipBoardExample.java file and write following code there:
package com.example.clipboardexample;
import android.app.Activity;
import android.content.ClipData;
import android.content.ClipboardManager;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.TextView;
public class ClipBoardExample extends Activity {
    ClipboardManager mClipboard;
    Spinner mSpinner;
    TextView mMimeTypes;
    EditText mEditText;
    CharSequence mStyledText;
    String mPlainText;
    ClipboardManager.OnPrimaryClipChangedListener mPrimaryChangeListener
            = new ClipboardManager.OnPrimaryClipChangedListener() {
        public void onPrimaryClipChanged() {
            updateClipData();
        }
    };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mClipboard = (ClipboardManager)getSystemService(CLIPBOARD_SERVICE);
        // See res/any/layout/resources.xml for this view layout definition.
        setContentView(R.layout.main);
        TextView tv;
        mStyledText = getText(R.string.styled_text);
        tv = (TextView)findViewById(R.id.styled_text);
        tv.setText(mStyledText);
        mPlainText = mStyledText.toString();
        tv = (TextView)findViewById(R.id.plain_text);
        tv.setText(mPlainText);
        mSpinner = (Spinner) findViewById(R.id.clip_type);
        ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(
                this, R.array.clip_data_types, android.R.layout.simple_spinner_item);
        adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        mSpinner.setAdapter(adapter);
        mSpinner.setOnItemSelectedListener(
                new OnItemSelectedListener() {
                    public void onItemSelected(
                            AdapterView<?> parent, View view, int position, longid) {
                    }
                    public void onNothingSelected(AdapterView<?> parent) {
                    }
                });
        mMimeTypes = (TextView)findViewById(R.id.clip_mime_types);
        mEditText = (EditText)findViewById(R.id.clip_text);
        mClipboard.addPrimaryClipChangedListener(mPrimaryChangeListener);
        updateClipData();
    }
    @Override
    protected void onDestroy() {
        super.onDestroy();
        mClipboard.removePrimaryClipChangedListener(mPrimaryChangeListener);
    }
    public void pasteStyledText(View button) {
        mClipboard.setPrimaryClip(ClipData.newPlainText("Styled Text", mStyledText));
    }
    public void pastePlainText(View button) {
        mClipboard.setPrimaryClip(ClipData.newPlainText("Styled Text", mPlainText));
    }
    public void pasteIntent(View button) {
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.android.com/"));
        mClipboard.setPrimaryClip(ClipData.newIntent("VIEW intent", intent));
    }
    public void pasteUri(View button) {
        mClipboard.setPrimaryClip(ClipData.newRawUri("URI", Uri.parse("http://www.android.com/")));
    }
    void updateClipData() {
        ClipData clip = mClipboard.getPrimaryClip();
        String[] mimeTypes = clip != null ?clip.getDescription().filterMimeTypes("*/*") : null;
        mMimeTypes.setText("");
        if (mimeTypes != null) {
            for (int i=0; i<mimeTypes.length; i++) {
                mMimeTypes.append(mimeTypes[i]);
                mMimeTypes.append("
"
);
            }
        }
        if (clip == null) {
            mSpinner.setSelection(0);
            mEditText.setText("");
        } else if (clip.getItemAt(0).getText() != null) {
            mSpinner.setSelection(1);
            mEditText.setText(clip.getItemAt(0).getText());
        } else if (clip.getItemAt(0).getIntent() != null) {
            mSpinner.setSelection(2);
            mEditText.setText(clip.getItemAt(0).getIntent().toUri(0));
        } else if (clip.getItemAt(0).getUri() != null) {
            mSpinner.setSelection(3);
            mEditText.setText(clip.getItemAt(0).getUri().toString());
        } else {
            mSpinner.setSelection(0);
            mEditText.setText("Clip containing no data");
        }
    }
}
3.) Compile and build the project.
Output
Read more
 

Download Android Game Copyright © 2016 -- Powered by Blogger