Senin, 31 Maret 2014

AutoMinimize Activity In Android

Description:
This example of will allows us to minimize currently running activity and will notify about the activity status on notification bar.
Algorithm:
1.) Create a new project by File-> New -> Android Project name it AutoMinimizeDemo.
2.) You will see some default code into your main.xml, strings.xml and android manifest file.
3.) Now add 2 buttons into your main.xml or write following into main.xml file:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" >
 <Button android:id="@+id/start"
       android:layout_width="wrap_content" android:layout_height="wrap_content" 
       android:text="Start">
        <requestFocus />
    </Button>
    <Button android:id="@+id/stop"
       android:layout_width="wrap_content" android:layout_height="wrap_content" 
       android:text="Stop">
    </Button>
 
</LinearLayout>
4.) Your launcher activity AutoMinimizeDemo will have two functions OnCreate() and ShowNotification..
Steps:
1.) Create a project named AutoMinimizeDemo and set the information as stated in the image.
Build Target: Android 1.6
Application Name: AutoMinimizeDemo
Package Name: com.example. AutoMinimizeDemo
Activity Name: AutoMinimizeDemo
Min SDK Version: 4
2.) Open AutoMinimizeDemo.java file and write following code there:
package com.example.AutoMinimizeDemo;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class AutoMinimizeDemo extends Activity {
        private NotificationManager mNM;
        Intent notificationIntent;
        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
                mNM =(NotificationManager)getSystemService(NOTIFICATION_SERVICE);
                notificationIntent = new Intent(this, AutoMinimizeDemo.class);
                Button startButton = (Button) findViewById(R.id.start);
                startButton.setOnClickListener(new OnClickListener()
                {
                        @Override
                        public void onClick(View v)
                        {
                                showNotification();
                                Intent startMain = newIntent(Intent.ACTION_MAIN);      
                                startMain.addCategory(Intent.CATEGORY_HOME);      
                                startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);      
                                startActivity(startMain);
                        }
                });
             
                Button stopButton = (Button) findViewById(R.id.stop);
                stopButton.setOnClickListener(new OnClickListener()
                {
                        @Override
                        public void onClick(View v)
                        {
                                mNM.cancelAll();
                                finish();
                        }
                });
        }
     
         private void showNotification() {
                CharSequence text = "Activity is minimized";
                Notification notification = new Notification(R.drawable.icon, text, System.currentTimeMillis());
                PendingIntent contentIntent = PendingIntent.getActivity(this, 0,new Intent(this, AutoMinimizeDemo.class), 0);
                notification.setLatestEventInfo(this"Auto MinimizeDemo","Running", contentIntent);
                notification.flags = Notification.FLAG_ONGOING_EVENT |Notification.FLAG_NO_CLEAR;  
                notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |Intent.FLAG_ACTIVITY_SINGLE_TOP);
             
                mNM.notify(1, notification);
            }
}
3.) Compile and build the project.
4.) Run on 1.6 simulator for the output.
5.) As soon as you click on Start button activity will be minimized and you will be on device’s home screen.
6.) You will be able to see a notification message on notification bar.
7.) When you click on notification message activity will be resumed.
On clicking Stop button the notification will be stopped and demo app will be closed.
Output
Read More..

Minggu, 23 Maret 2014

Titanium BackUp Pro 4.8.1 with TBPatcher 4.7.5 Apk Full Version

TITANIUM BACKUP PRO 4.8.1 + TBPATCHER 4.7.5 APK FULL VERSION
Req: Android 1.0+ Android Apps


Titanium Backup is the most powerful backup tool on Android now the official New version release that give you more satisfaction TITANIUM BACKUP PRO 4.8.1 + TBPATCHER 4.7.5 APK FULL !

You can backup, restore, freeze (with Pro) your apps + data + Market links. This includes all protected apps & system apps, plus external data on your SD card. You can do 0-click batch & scheduled backups.

Titanium BackUp Pro 4.8.1 with TBPatcher 4.7.5 Apk Full Version Updates:
  • Multiple backups per app
  • 0-click batch restore
  • Multi-user support for some apps! (eg: games)
  • Batch verification
  • Backup apps without closing them!
  • Restore individual apps+data from CWM backups!
  • Hypershell speed
  • Migrate system data across different ROMs
  • Market Doctor
  • Apps freezer (incl. batch support)
  • Market "auto updating" manager
  • Convert user apps <=> system apps
  • Encryption
  • Unlimited schedules
  • Sync to/from Dropbox
  • Protect backup against deletion
  • Send backup by e-mail
  • CSV export any app DB (e-mail or Google Docs)
  • Brand the app with your name
  • Bloatware Melter (experimental)
  • Convert app data to/from faster WAL DB format
  • And more!

Get Backup Now!! PRO !

Download Titanium BackUp Pro 4.8.1 with TBPatcher 4.7.5 Apk Full Version
Read More..

Jumat, 21 Maret 2014

iQuran Pro Android App apk


In this holy month of Ramadan, you will never be separated from the Al-Quran if you have iQuran Pro Android App apk on the android phone. Wherever and whenever, youll always be able to recite the words of Allah swt.



About iQuran Pro Android App apk
UPDATED:
July 31, 2011
CURRENT VERSION:
2.0.7
REQUIRES ANDROID:
1.6 and up
CATEGORY:
Books & Reference
INSTALLS:
10,000 - 50,000
SIZE:
23M
CONTENT RATING:
Everyone

If you looking for iQuran Pro Android App apk, you can go to the source download this apps via the link below.

iQuran Pro Android App apk

All information in this blog based on information available at the official website or from other unofficial websites that discuss applications, games, software, themes and manuals for Android.

freedownloadandroidapps.blogspot.com not responsible for the changes, losses, damages or any matter relating to the use of a variety of applications, games, software, themes and manuals that the information contained in this blog.

freedownloadandroidapps.blogspot.com not received any complaints and free from any claims of any party upon the information contained in this blog.
Read More..

Selasa, 18 Maret 2014

Toss the Ball 1 0 0 v1 0 0 Android Apk Game


Overview: A carnival style game with power-ups and 12 unique balls.
THE CARNIVAL – ON THE GO!
Toss the Ball brings the carnival to your fingertips in an updated version of the midway game you used to play!

Read More..

Minggu, 16 Maret 2014

Virtual DJ Turntable v3 2 0 apk


Plug Your Phone or Tablet into a Mixer and Spin a Pitch Controlled Track !



Virtual DJ Turntable v3.2.0 market.android.com.virtualturntable
With +/- 20% Pitch Control and a 3-Band Equalizer, you can use your phone or tablet in place of a turntable or CDJ! Just plug your device into a DJ mixer, select a song, and start beatmatching with big, responsive, and inuitive controls. With two devices you can spin all your music completely digitally!


Features :
  • +/- 20% Pitch Control with Pitch Bending Support
  • 3-Band Equalizer with Kill and Reset Switches
  • Fast, Reactive, and Intuitive DJ Controls
  • Intuitive Music Selector
  • Background Audio Process Ensures Uninterrupted Performance
  • Universal Interface for Tablets & Phones
  • Scales properly in Landscape and Portrait
  • Change Orientation options tab to prevent accidental control re-arranging
  • Works in Gingerbread & Honeycomb!
  • Works just like your favorite DJ tool: CDJ, Technics, Traktor, Serato, Final Scratch, Ableton, etc.
Simply hook up your headphone jack to a line-in on your mixer, then DJ with tracks from your device while being able to control Seeking, Playback, and working +/- 20% Pitch! Virtual DJ Turntable is fast and efficient.

Virtual DJ Turntable can mute all other audio sources to prevent embarrassing audio interference and unmutes them on exit. The back button is disabled to prevent accidental closure, use the menu button to close the app. The music is played in the background service to prevent accidental closures.

It is strongly suggested that the user enable Airplane Mode and mute all other audio sources before a DJ performance to prevent accidental phone interactions, audio interruptions, and increase performance. This can be done in the options tab.

Required Android O/S : 2.3.3


Screenshots :


Download : 500Kb APK


Read More..

Kamis, 13 Maret 2014

Quick System Info v1 4 5 Apk Download

Quick System Info v1.4.5 Apk Download

Quick System Info  v1.4.5 Apk Download
Description
Explore your system state betterQuick access of the basic system information for your Android platform, including information for CPU, memory, SD Card, running processes, network states and installed applications.
This is the ad-supported version of Quick System Info, which provides extra features like Live CPU/MEM Monitor, One-click Cache Cleaner, etc.
ADs can be removed by donations. Thanks for your support of this app.
Get a free unlock code for translation contributor. If you are interested, please contact the author.
* Widgets will not work if you install app to SD card *

Android OS Requirements
1.5 and up

Changelog
Whats in this version:
  1. Add option to hide status bar icons for notifications.
  2. Support transparency settings for widgets(you need recreate the widgets).
  3. Add Italian support, thanks to Enrico Caruso.
  4. Other minor fixing.
File Size : 264 Kb

Download Quick System Info v1.4.5 Apk
Quick System Info v1.4.5 Apk Download
Read More..

Selasa, 11 Maret 2014

Gone Fishing: Trophy Catch apk
Gone Fishing: Trophy Catch apk

Current Version : 1.4.9
Requires Android : 2.3 and up
Category : Sports Games
Size : 23M






Gone Fishing: Trophy Catch apk Description

Welcome to “Gone Fishing: Trophy Catch”!

Official Page on facebook: https://www.facebook.com/GoneFishingMob

Take a tour of the world’s most picturesque fishing spots in Gone Fishing: Trophy Catch! Equip yourself with multiple fishing rods, lures, and dozens of different types of bait to catch 80 varieties of fish, as well as more than 50 rare collectible items. The original Gone Fishing garnered more than 15 million players worldwide, and this new version of the game offers two new fishing spots, and rebalanced gameplay that gives you the ability to quickly earn piles and piles of glittering gold coins that you can use to upgrade your fishing gear.

-80 different types of fish to catch!
-9 lures, 11 different fishing rods, 24 types of bait!
-Dozens of in-game achievements to unlock!
-Rebalanced gameplay offers tons of opportunities to earn gold to purchase new fishing gear!
-New social features let you share your trophy catch with friends!
-Two all-new fishing locations added to Gone Fishing's picturesque fishing circuit!
-More than 50 rare items to collect!

Pricacy Policy: http://www.game-insight.com/legal/privacy


Gone Fishing: Trophy Catch apk Videos and Images





Read More..

Sabtu, 08 Maret 2014

Bridge Constructor PG FREE apk
Bridge Constructor PG FREE apk

Current Version : 1.2
Requires Android : 2.2 and up
Category : Brain And Puzzle
Size : 18M






Bridge Constructor PG FREE apk Description

"Bridge Constructor Playground is even more fun than the prequel." – Chip.de

"Bridge Constructor Playground convinces by a fresh look and a lot of fun for several hours." - apfelnews.eu

"Bridge Constructor Playground offers players of all ages an introduction to the topic of “bridge building”. This game gives you the freedom to let your creative side run riot – nothing is impossible." – appshopper.com

"This is a very good sequel and satisfies with all the improvements." – apps-news.de

-------------------------

Bridge Constructor Playground offers people of all ages an introduction to the topic of “bridge building”. This game gives you the freedom to let your creative side run riot – nothing is impossible. You have to build bridges over deep valleys, canals or rivers. Following this your bridges will be subjected to a stress test to see whether they can support the weight of the cars and/or trucks which drive across them.

In comparison to the #1 hit Bridge Constructor, Bridge Constructor Playground offers an even easier entry to the game incl. an extensive tutorial. With no fixed budget, and next to no limitations on building materials, there are almost no limits: you can build and construct to your heart’s desire. Here you are free to do as you please and let the time fly by with creative bridge building. Experienced players will enjoy the challenges of the new badge system: for every bridge there are 5 badges to be won for which you must fulfill certain requirements. For example, building a bridge that can carry no more than a certain load limit. All of this, paired with a bright and friendly look, makes Bridge Constructor Playground an exciting and also educational experience for the whole family, offering hours of gaming fun.

FEATURES:
• New badge system for beginners and pros
• 5 Settings: City, Canyon, Beach, Mountains, Rolling hills
• Survey map with unlocked worlds / levels
• Extensive tutorial for easy entry to the game
• 4 different building materials: wood, steel, steel cable, concrete piles
• Percentages and colored visualization of building material’s stress loads
• Two different stress levels: car and truck
• High score per Level


Bridge Constructor PG FREE apk Videos and Images





Read More..

Kamis, 06 Maret 2014

Knight Storm v1.5.4 apk and data direct link free download


Screenshots :




Download Knight Storm v1.5.4 [Mod Money] APK



Read More..

Senin, 03 Maret 2014

Download ANDROID Mortal Combat 2

http://androidgamesofworld.blogspot.com/

Game description: Mortal Combat 2

For Android 1.6 and higher [2.5 MB][apk] Download Here
Read More..

Sabtu, 01 Maret 2014

 SCREENSHOTS:
Dead Trigger v1.8.2 APK+DATA MOD Unlimited Golds And Silvers.
Visually Stunning First Person Zombie Shooter Arcade !!!
* Supports extended effects on Tegra 3 devices *

� Get the best out of your device
- Stunning graphics with advanced lighting and post-process effects
- Full 3D characters and environments with an unprecedented level of detail
- High quality 3D audio and a lively music soundtrack
- Character animations recorded using high-end motion capture
- Intuitive controls
- Spectacular ragdoll effects
- Water simulation

Requires Android: 2.3 and Up

Version: 1.8.2

PLAY LINK: DEAD TRIGGER

Download Links: (ARMv7 Only)
Normal APK+Modded APK+Data Files
TusFiles:
DEAD TRIGGER MOD APK+NORMAL APK+DATA PART1(100 MB)
DEAD TRIGGER MOD APK+NORMAL APK+DATA PART2(60 MB)

DataFileHost:
DEAD TRIGGER MOD APK+NORMAL APK+DATA PART1(100 MB)
DEAD TRIGGER MOD APK+NORMAL APK+DATA PART2(60 MB)

ZippyShare:
DEAD TRIGGER MOD APK+NORMAL APK+DATA PART1(100 MB)
DEAD TRIGGER MOD APK+NORMAL APK+DATA PART2(60 MB)

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