Monday, March 31, 2014

How to create menu in Android using xml file

This code will show how to create menu in android, how to perform action when we click on menu item and how to set icon in menu item.

Just create a new project and give "rl" id to layout or paste below code in layout->main xml file

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    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"
    tools:context=".TestMenu"
    android:id="@+id/rl">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

 
Now open menu folder and create test_menu xml file and paste below code


    <item android:id="@+id/red"
        android:title="RED"
        android:icon="@drawable/lion">
       
    </item>
      <item android:id="@+id/blue"
        android:title="BLUE">
       
    </item>
      <item android:id="@+id/green"
        android:title="GREEN">
       
    </item>
      <item android:id="@+id/yellow"
        android:title="YELLOW">
       
    </item>
      <item android:id="@+id/black"
        android:title="BLACK">
      </item>
           <item android:id="@+id/gray"
        android:title="GREY">
        </item>
      
           <item android:id="@+id/pink"
        android:title="PINK">
      </item>
         <item android:id="@+id/white"
        android:title="WHITE">
      </item>
         <item android:id="@+id/close"
        android:title="CLOSE">
      </item>
</menu>

Now open Main java file and paste below code

package test.menutest; //your package name

importandroid.os.Bundle;
importandroid.app.Activity;
importandroid.graphics.Color;
importandroid.view.Menu;
importandroid.view.MenuItem;
importandroid.widget.RelativeLayout;

public class TestMenu extends Activity {

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

 //This function will call when we click on menu button
    @Override
    public booleanonCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.test_menu, menu);
        return super.onCreateOptionsMenu(menu);
    }
    
//This function will perform action when we click on menu item

    public booleanonOptionsItemSelected(MenuItem item)
    {
      RelativeLayout rl=(RelativeLayout)findViewById(R.id.rl);
      switch(item.getItemId())
      {
      case R.id.red:rl.setBackgroundColor(Color.RED); break;
      case R.id.blue:rl.setBackgroundColor(Color.BLUE); break;
      case R.id.gray:rl.setBackgroundColor(Color.GRAY); break;
      case R.id.yellow:rl.setBackgroundColor(Color.YELLOW); break;
      case R.id.pink:rl.setBackgroundColor(Color.MAGENTA); break;
      case R.id.white:rl.setBackgroundColor(Color.WHITE); break;
      case R.id.green:rl.setBackgroundColor(Color.GREEN); break;
      case R.id.close:finish(); break;
      default:rl.setBackgroundColor(Color.BLACK);
     
      }
     
      return true;
    }  
}

Run code and Enjoy...

Read More..

Sunday, March 30, 2014

Create wifi hotspot on Ubuntu 12 04 12 10

Ok, its sad that Android devices dont support connection to ad-hoc wifi but there are some methods. For example, for Windows 7 there is Connectify, its true its not free, but it exist! But for Linux? Im a Linux fan, I work a lot on Linux and I want to have the posibility to connect my gadgets to a hotspot but Linux creates from default ad-hoc connections. But there is a solutions and its FREE!
All you have to do is to open terminal and enter some commands. And Ill publish the steps!

  1. open terminal and type: sudo lshw | less ; find -netwok section and make sure that driver is ath5k or ath9k. If you made a hotspot with Connectify on Windows7 and it worked, you can skip this step.
  2. install hostapd and dnsmasq by typing: sudo apt-get install hostapd dnsmasq
  3. stop those services and prevent them from starting on system start up:
    • sudo service hostapd stop
    • sudo service dnsmasq stop
    • sudo update-rc.d hostapd disable
    • sudo update-rc.d dnsmasq disable
  4. configure dnsmasq:sudo gedit /etc/dnsmasq.conf and add:
    1. # Bind to only one interface
    2. bind-interfaces
    3. # Choose interface for binding
    4. interface=wlan0
    5. # Specify range of IP addresses for DHCP leasses
    6. dhcp-range=192.168.150.2,192.168.150.10
  5. configure hostapd:sudo gedit /etc/hostapd.conf and add:
    1. # Define interface
    2. interface=wlan0
    3. # Select driver
    4. driver=nl80211
    5. # Set access point name
    6. ssid=myhotspot
    7. # Set access point harware mode to 802.11g
    8. hw_mode=g
    9. # Set WIFI channel (can be easily changed)
    10. channel=6
    11. # Enable WPA2 only (1 for WPA, 2 for WPA2, 3 for WPA + WPA2)
    12. wpa=2
    13. wpa_passphrase=mypassword
  6. create a file named start.sh and add the following lines:
    1. #!/bin/bash
    2. # Start
    3. # Configure IP address for WLAN
    4. sudo ifconfig wlan0 192.168.150.1
    5. # Start DHCP/DNS server
    6. sudo service dnsmasq restart
    7. # Enable routing
    8. sudo sysctl net.ipv4.ip_forward=1
    9. # Enable NAT
    10. sudo iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
    11. # Run access point daemon
    12. sudo hostapd /etc/hostapd.conf
    13. # Stop
    14. # Disable NAT
    15. sudo iptables -D POSTROUTING -t nat -o ppp0 -j MASQUERADE
    16. # Disable routing
    17. sudo sysctl net.ipv4.ip_forward=0
    18. # Disable DHCP/DNS server
    19. sudo service dnsmasq stop
    20. sudo service hostapd stop
  7. start hotspot by starting your script "start.sh"
PS: Im not the author of this tutorial but it helped me and Im sure that it works!
Read More..

Saturday, March 29, 2014

Download and install Processing software

Processing is an open source programming language and environment for people who want to create images, animations, and interactions. Initially developed to serve as a software sketchbook and to teach fundamentals of computer programming within a visual context, Processing also has evolved into a tool for generating finished professional work. Today, there are tens of thousands of students, artists, designers, researchers, and hobbyists who use Processing for learning, prototyping, and production.

To download and install is very straightforward:

Visit http://processing.org/, select Download, download the Mac, Windows, or Linux version, depending on what machine you have.

Download Processing software


Reference: Getting Started

Next:
- Setup Processing for Android development
- Hello World of Processing for Android


Read More..

Wednesday, March 26, 2014

Social Tapatalk Forum App 2 0 2 Android

Tapatalk Forum App 2.0.2 (Android)

Tapatalk Forum App 2.0.2 (Android)
Requirements: Android OS 2.0 +

Tapatalk Forum App 2.0.2 (Android) Overview: The only and the best fully functional forum app in the Market, endorsed by over 35,000 of forums worldwide. 4.5/5 stars reviewed by ten thousands of power fellows. Why not give it a try?
Online Communities at Your Fingertips
If you have ever tried to visit a forum using an Internet browser on your Android device you know what a nightmare it can be. The multitude of layouts you will encounter can have you scrolling, pinching, zooming, and swiping until your fingers are numb. Enter the Tapatalk Forum App.
Tapatalk houses over 35,000 of the most popular public forums right inside the app. From online games to technology, animals to extreme couponing, there is a forum out there to suit your interests. Browse the 13 categories or search for a particular forum in Tapatalks easy-to-use interface. You can find anything and everything with this app.
Once you have found the forums you want to read it is easy to add them to your favorites for quicker access. Then you simply log in to the app and read your private messages or reply to current topics. You can also easily start a thread about something that piques your interest. You can also mark the topics you care about on your forums.
Tapatalk contains all the features and capabilities found in your favorite browser but in a simple, straight-forward delivery. Easily see who is online, view board statistics, and even user profiles all without waiting for your phones browser to connect to the Internet. Give it a try today.

Whats in Tapatalk Forum App 2.0.2 (Android):
Introducing Tapatalk 2
Account Sync
Tapatalk 2 sync all your forum accounts among all mobile devices with Tapatalk installed. Works on iPad, iPhone, Android phone, tablets and BlackBerry.
Forum Recommendation
The best forums are not necessary the biggest. Discover new and emerging forums with our Recommendation Engine in Tapatalk 2.
Better Interface
A new look & feel w/ revamped interface allows you to focus on your conversation & latest discussions. Works great on Android ICS.

Tapatalk Forum App 2.0.2 (Android) screenshot:
Tapatalk Forum App 2.0.2 (Android)
Tapatalk Forum App 2.0.2 (Android)

Code:
https://play.google.com/store/apps/details?id=com.quoord.tapatalkpro.activity 

Download Tapatalk Forum App 2.0.2 (Android)

Code:
http://rapidgator.net/file/5002831/Tapatalk.Forum.App.2.0.2.Android.zip.html 
http://bitshare.com/files/hc2dju9y/Tapatalk.Forum.App.2.0.2.Android.zip.html 
http://jumbofiles.com/3hih3c0hdo9l 
Read More..

Tuesday, March 25, 2014

Pure messenger widget 2 6 2 Full APK


Pure messenger widget 2.6.2 Full APK. First aggreator widget for Gmail message, email, sms, facebook, twitter and more Messenger widget to show all or any combination of: - Gmail - Emails (POP3 + IMAP / need K9FP) - MMS / SMS - Facebook - Twitter - calls. 

Read More..

Monday, March 24, 2014

New Blackmart Alpha v0 99 2 42 Full Apk

blackmart alpha apk
 Download Blackmart Alpha New Version

Now you can download android paid apps Free of Cost. (NEW) Black Market Alpha v0.99.2.42 is an android app which is like the Google Play Store, This app will let you download paid android apps without charging you money. Almost all well known paid apps are available in this app. Enjoy Paid android apps FREE of cost.

Blackmart also has filters that allows you to sort applications by name, size, price, date and value and gives you the ability to uninstall applications and make a backup of them.

Download Blackmart Alpha v0.99.2.42 Full Apk
download now

Read More..

Thessaloniki ByBus

Thessaloniki ByBus 1.1.0

Thessaloniki ByBus is the new android app that offers urban bus passengers a better experience of transportation within the city. The application is currently customized for bus lines of Thessaloniki, Greece.

With Thessaloniki ByBus you can have:
• Real-time, community-powered information about all bus lines
• A personal profile of your transportations
• Profile comparison with other users
• All the bus routes inside your pocket
Read more »
Read More..

Sunday, March 23, 2014

Xperia Z Live Wallpaper v1 0 6 Full Apk

xperia z

Download Xperia Z Live Wallpaper Apk

Xperia Z Live Wallpaper, beautiful water drop ripple effect with floating particles.
To use: Home -> Menu -> Wallpapers -> Live Wallpapers
To develop more free great live wallpapers, we have implemented some ads in settings.
Advertisement can support our develop more free great live wallpapers.

This live wallpaper has been tested on latest devices such as Samsung Galaxy S3, Nexus 7, HTC Desire S and Sony Xperia S. Please contact us if your device is not supported.
Note: If your wallpaper resets to default after reboot, you will need put the app on phone instead of SD card.

Disclaimer/Trademarks
Xperia is a trademark of Sony Mobile Communications AB.
This app is not affiliated with or endorsed by Sony.

Screenshot:
Xperia Z Live WallpaperXperia Z Live Wallpaper
Xperia Z Live WallpaperXperia Z Live Wallpaper

Download Xperia Z Live Wallpaper v1.0.6
download now

Read More..

Saturday, March 22, 2014

Tone Shuffler MixZing Media Player

Tone Shuffler 1.0.2

Can't figure out which ringtone to use? With Tone Shuffler, you don't have to! Simply create a list of your favorite ringtones, and Tone Shuffler will randomly choose one to play the next time someone calls you. Works with SMS notifications too!

Features:
-Create a list of any number of ringtones or SMS notifications you want
-Preview all your tones in-app as you are adding them
-Simple, intuitive interface
-No tone is played twice in a row
-Enable randomization of ringtones and SMS notifications separately
-Ad-supported; ad-less version coming soon

Tips:
-Hit your Menu button to access the notification settings screen!
-Make sure you click the Enable checkbox(es) or the app won't do anything
-Likewise, make sure you have added tones to your list(s) or the app won't do anything

MixZing Media Player 3.7.1

MixZing is simply the most advanced media player around!
▷ Music ID identifies your songs, even those without valid tags, and lets you clean up their tags and album art
▷ Displays lyrics for millions of songs
▷ Mood Player creates custom listening sessions--like Pandora for your music!
▷ Graphic equalizer for MP3, AAC/M4A and OGG files
▷ Discover great new music from independent musicians (provided by Indaba Music)
▷ Automatically saves playlists and lets you restore deleted ones
▷ Folder browser lets you access your media collection by storage folders
▷ Tag editor for most file types
▷ Discover new music with spot-on recommendations
▷ Lock-screen widget to control player while phone is locked
▷ Sleep timer
▷ Automatically downloads missing album art
▷ Home-screen widgets with album art
▷ Batch playlist editing
▷ Genre and video browsing
Read more »
Read More..

Battery Monitor Widget Pro v2 0 7 APK Free Download

Battery Monitor Widget Pro v2.0.7 APK Free Download

Battery Monitor Widget Pro v2.0.7 APK Free Download
Req: Android 1.0+ Android Apps


Battery Monitor Widget Pro v2.0.7 APK FUll version ! Complete battery monitoring with notification icon, history, graphics and alarms

Special offer! Get it while it lasts! The most complete tool to manage your battery: Shows historical data (%, mA, mW, mV and temperature), calculates estimated run-times and battery aging, helps calibrate battery and improve your battery run-time. Get nOW!

Battery Monitor Widget Pro v2.0.7 Updates:
  • New %/h data in graphs and history
  • New widget battery level color (default, ICS or Motorola themes)
  • New wakelocks statistics (screen-off)
  • Markers now offer more statistics and can be added/removed from history browsing (long-press) - pro version only
  • 2.0.6-1.9.5:
  • Charger output power now optional
  • New option to hide or remove label

Download Battery Monitor Widget Pro v2.0.7 APK Free
Read More..

Friday, March 21, 2014

Blik Calendar Widget Pro cracked 2 6 1 Full APK


Blik Calendar Widget Pro cracked 2.6.1 Full APK. ca picture is valued at many words--see your calendar events as pictures. why use a boring calendar widget that has words whenever cool picture will tell the story ? blik reads your calendar and automatically shows the very best picture for every event that describes it while not words. the image is shown, along side the beginning time and a vital word coming from the event in order that you might want to see whats coming up from the calendar.



Read More..

Thursday, March 20, 2014

PeakFinder Alps v1 0 3 Android apk app


Requirements: Android 1.6+
Overview: PeakFinder gives you gorgeous panoramic views of mountain ranges.


PeakFinder gives you gorgeous panoramic views of mountain ranges.
PeakFinder is for mountain climbers, hikers, and people who just crave information about the world around them. Whether you’re standing atop a mountain or sitting in the comfort of your living room, PeakFinder gives you gorgeous panoramic views of mountain ranges.

PeakFinder Alps features include:
• Fast rendering of the surrounding landscapes in a range of up to 200 miles
• Smooth scrolling and zooming
• Covers the countries Austria, Switzerland, France, Germany, Italy, Liechtenstein, Slovenia
• Includes more than 25,000 peak names
• Panoramic view rendering works completely offline
• Uses GPS to get your current location
• Google Maps (online) for view point selection
• Functionality for updating the peak directory

Anyone who has ever been close to the natural wonders of mountain ranges can tell you that they’re intriguing and beautiful. They’ll also tell you that it’s easy to lose your location, making it hard to figure out where you are and where you’re heading. Peakfinder is an incredible addition to your Android based smartphone for those people who are drawn to the natural beauty of the mountains and want to experience it first-hand. It’s also a great way to explore the mountains without leaving home.

Whether youre planning an elaborate mountain climbing expedition type of vacation, or a quiet, low-key "staycation" at home, Peakfinder will be your go-to resource guide for the great outdoors and all of your path finding information needs. Download Peakfinder now and get a birds eye view of the great outdoors and check out all the possibilities it has waiting for you.

Download Instructions:
http://www.filesonic.com/file/1515257494/PeakFinder_Alps_1.0.3_+_SD-Files.rar
Read More..

Wednesday, March 19, 2014

Free Download Winamp 1 2 4 APK FULL VERSION

Free Download Winamp 1.2.4 APK FULL VERSION

Free Download Winamp 1.2.4 APK FULL VERSION
Req: Android 2.1+ Android Apk Free


Winamp 1.2.4 APK the Ultimate Media player for android and it is the new version that give you more satisfaction!!

Winamp for Android offers a complete music management solution (2.1 OS & above) featuring wireless desktop sync (latest Winamp Media Player required), iTunes library import, & access to thousands of internet radio stations with SHOUTcast.

Winamp 1.2.4 APK FULL VERSION New Features:
  • Unlock premium features with the Pro Bundle (via in-app purchase)
  • Now supports syncing with Winamp for Mac Beta
  • Touch sensitive album art gesturing
  • Access to more free music downloads in Spinner
  • More albums available in CDLP (free streaming)
  • Headset optimizations
  • Pro Bundle Features - $4.99 In-App Purchase
  • 10-band graphic equalizer
  • Customizable home screen
  • Browse by Folder
  • Crossfade
  • Gapless playback
  • Support for FLAC playback in Folders View (lossless audio playback)
  • Replay Gain
  • Personalized station recommendations
  • Play any streaming audio URL (supported formats only)
  • No ads

Download Winamp 1.2.4 APK FULL VERSION
Read More..

CineXPlayer Best Xvid Player v1 1 apk



Watch your Xvid movies on your Android 2.3. The Best XVid Player !


CineXPlayer - Best Xvid Player v1.1 market.android.com.cinexplayer
Watch your Xvid movies on your Android 2.3 Device (ARM CORTEX-A8-Neon) enabled device.

You love to watch your movies anywhere, anytime and take them with you on your Android Device. But you realized that some of the most popular movie avi file formats (such as Xvid) wont play on your Android device ?


CineXPlayer is the solution for you! -Transfer your Xvid movies to your device instantly (no conversion needed) -Play your movies anywhere, anytime - even when you have no Internet connection (in a train, a car, a plane…)

Features :
  • Xvid, MP4, 3GP, etc
  • Facebook Share n tell function 
  • Enjoy the full quality and cinema experience (Super smooth video) 
  • Efficient Movie playback for battery efficiency (longer movie playback between charges) 
  • Full Auto Resuming Function 
  • Subtitle Support (.srt/.smi formats) - with control of text size 
  • Loop Movie Function 
  • High Speed Video Scrubbing 
  • Hold to Delete (to manage movies/subtitles) 
  • Best in class Audio/Video Synch 
  • Supported Languages English, Dutch, Chinese, Korean, Russian, French, Arabic, Swedish
  • CineXPlayer plays Xvid movies and we endeavor to support most popular formats of Xvid. You may occasionally come across an Xvid movie you will not be able to play.
Required Android O/S : 2.3

Screenshots :
 


Download : 3Mb APK


Read More..

Tuesday, March 18, 2014

Fingerprint Scanner Lock apk Free

Fingerprint Scanner Lock apk
Fingerprint Scanner Lock apk

Current Version : 4.6
Requires Android : 2.0 and up
Category : Casual
Size : 1.7M






Fingerprint Scanner Lock apk Description

Finger Print Scanner Lock Screen.

NEW: Check out the video for those who said they just get access denied. We have decided to make a video for you to understand the trick.
ATTENTION 1: For those who don't understand how the app works, please read the description on how the app works. Please don't give it 1 star just because you don't understand how it works. The trick is to set up the number of cycles it will scan before it can allow you to unlock the phone. So if you choose 3 cycles then you wait for it to scan 3 cycles then take your finger off and boom you unlock the phone. Set this number below as it is your secret to unlock the phone.

ATTENTION 2:Some users are reporting that the app contains a "virus". This is NOT true. The reason is that these users use some antiviruses like Dr Web and others which detect apps with startapp advertising company as "adware".
Then these users falsely report virus to scare potential users who want to download the app. Furthermore the ads can be easily removed and this will not affect the use of app. So, i recommend to ignore the warning alerts.that the

NEW: Added 3 New Themes. Now you can choose from 4 popular themes to set as wallpaper. Ice Cream Sandwitch, Iphone 5, Jelly Bean and Iphone 4S

Free Customizable Fingerprint Scanner to lock your phone!
Get the best customizable fingerprint scanner lock that actually works as a lock screen.
Trick your friends that your phone uses finger print to allow access to the home page.


HOW TO USE:
✓ Go to Settings and set the number of scans to unlock.
✓ Give your phone to an unsuspecting friend and tell him/her to unlock the phone.
✓ He will fail.
✓ Then since you know number of times to unlock it. Prove to him you can unlock it.

FEATURES:
✓ Has 4 different themes to choose. Ice cream sandwich , Jellybean, Iphone 5 and iphone 4S themes.
✓ You can set it to appear as phone unlock so it will start up immediately after your unlock the phone. By default it is not checked. if you want this feature go to menu item settings and check set as lock screen.
✓ Customization options - You set the rules and hence you are the only one who knows the trick to unlock.

Important
In order to keep the app 100% free, you will receive the following –
Search shortcut icon on your home screen (see image below).
Search shortcut on your bookmarks.
This will help keep this app 100% free and help us bring you more cool apps like this in the future.
You can delete the search shortcuts easily (Drag & Drop to the garbage), this will not affect the application in anyway.

Also, this app includes push notifications and icon ads. You opt-out from receiving such ads.
Thank you all for understanding.


Fingerprint Scanner Lock apk Videos and Images





Read More..

Monday, March 17, 2014

Photo Grid v2 00 2 00 Android Apk App

Requirements: Android 1.6+
Overview: With PhotoGrid you can convert your photos collection into amazing collages. Try it out.



Thumbnail choose photo support now, more and faster.
Edit(Swap,Rotate,Move,Zoom,Sketch) grid support now.

With PhotoGrid you can convert your photos collection into amazing collages.
Try it out.

Features:
-High mode: put your photos in a list
-Wide mode: put your photos in a row
-Multi mode: No restriction on the number of photo
-Single mode: you can edit a single photo
-Load images from the gallery.
-Five group to choose.
-Two kinds of model choose photo.(thumbnail, watermark.)
-Tap or shake to rearrange photos.
-Edit grid, Swap, Rotate, Move, Zoom, Sketch.
-A lot of image templates.
-Border type changeable.
-Share your collage using: Twitter, Facebook, Gmail...
-Language support: English, Korean, Chinese, Traditional Chinese, Japanese.
And,best of all...its FREE!

Q&A.
Q.Where do the collages go when u save them?
A.Save in sdcardPhoto Grid

Please send us email(roidapp@gmail.com) if you have any problem or feedback, we cant reply if you only put comments , thanks a lot!

Tag: photo grid, photo album, photo thumbnail, photowall, photo editor, photo wallapaer, photo lab.

Recent changes:
1.High mode: put your photos in a list
2.Wide mode: put your photos in a row
3.Multi mode: No restriction on the number of photo
4.Single mode: you can edit a single photo

Content rating: Everyone

Latest version: 2.00 (for all Android versions, supports App2SD)

Download Instructions:
http://www.filefat.com/epkodhexuiyd


Mirror(s):
http://plunder.com/70a50d731f
Read More..

Download SketchBook Mobile v2 0 3 APK

Download SketchBook Mobile v2.0.3 APK. Unleash your creativity with SketchBook Mobile for Android! Autodesk SketchBook® Mobile is a professional-grade paint and drawing application offering a full set of sketching tools and a streamlined and intuitive user interface.

mirror
Read More..

Sunday, March 16, 2014

One Eye Spy v1 2 2 apk


One Eye: Probably the best stealth/spy camera app for Android !

One Eye Spy v1.2.2 market.android.com.oneeyer
Probably the best spy cam app for Android!
A browser-based camera app that allows you to snap pics unnoticeably!


Similar to:
Spy Phone, Mobile Hidden Camera, Super Spy Camera, Callcam, SpyCam, SpyShot, Spy Camera, SilentSnap, SilentCam

Features :
  • Supports: images, video, and audio
  • Browser disguise with bookmarks support (i.e. browse news, email, facebook while capturing)
  • Camera Preview mode
  • Blackout Mode: pitch black screen, stays awake, touch to start/stop.
  • Continuous shooting
  • No shutter sounds ("Shutter Sound Workaround" for phones that do)
  • Hi-res images
  • Video recording up to 1080p resolution (see Known Limitations below)
  • Vibration/silent notifications
  • Show/hide media in Gallery
  • Customizable Hotkeys
  • Move to SD card
Paid Version Additional Features :
  • No ads
  • 720p/1080p HD video recording (Android 2.3.x+, but not working on some phones, e.g. Motorola)
  • Unlimited video recording length
  • Auto-split video files by time or file size
  • Shake Detection (to reduce the number of blurred pics)
  • Full list of browser bookmarks
  • Shortcuts: create shortcuts to One Eye using predefined or customizable preferences.
  • Extended set of preference parameters
Known Limitations
⇒ LG phones record video in black & white. I have yet to fix this.
⇒ HD video recording not working correctly on some phones (e.g. Motorola).
⇒ Stops capturing when app becomes background.
⇒ Has no control over phones button/LED lights.
⇒ Does not support dual cam.
⇒ Shutter sound not muted?!



Shutter sound can be shut off on most phones by muting System volume which this app does by default. BUT! This is bypassed in some regional phones (e.g. Samsung, LG). This is not a limitation of the app, but by the phone and the Android platform. Shutter Sound Workaround 1 allows you to workaround this problem, but only for the camera click sound, and limits your pic size. Shutter Sound Workaround 2 can mute the shutter sounds by renaming the sound files in your file system, but this requires rooting.

Required Android O/S : 2.2 +


Screenshots : 
 
 

Download : 770Kb APK


Read More..