Pages

Tampilkan postingan dengan label Android. Tampilkan semua postingan
Tampilkan postingan dengan label Android. Tampilkan semua postingan

Minggu, 05 Agustus 2012

Tech giants join forces to create Android gaming benchmark


Summary: Acer, Intel, Qualcomm, and SingTel-Optus have joined a program to benchmark 3D gaming standards on Android devices.
Acer, Intel, Qualcomm, and SingTel-Optus have joined Futuremark's "Benchmark Development Program" in order to create industry-wide benchmarks for the gaming industry.
futuremarkcopy030812co
The to-be-launched 3D gaming benchmark is primarily concerned with games developed for Google's Android operating system, found on smartphones and tablets.
Input, opinions and expertise are gathered through the program, which will be used to create the industry-wide standards that can measure and rate the performance of game titles and software packages.
Jukka Makinen, Futuremark CEO said:
"For more than 10 years, we have worked with the world's leading PC hardware manufacturers to create 3DMark and PCMark. As a result, Futuremark benchmarks are the industry standard for PC performance measurement used by hundreds of press publications and millions of end-users.
As we bring 3DMark to a new OS for the first time, we are excited to expand our cooperation to include Acer, Intel, Qualcomm and SingTel-Optus."
3DMark for Android is expected to be released later this year, and will measure performance using graphics rendering, CPU and physics tests through OpenGL ES2.0. In conjunction with this release, the company plan to launch 3DMark for Windows this year.
The software can be used to analyze performance and therefore recommend the most suitable products to consumers; whether they want computational software or high-performance gaming.
Other members of the Benchmark Development Program include Microsoft, NVIDIA, Samsung and AMD.

Android 4.1 'Jelly Bean' hits 0.8 percent market share


Summary: While Android 2.3 'Gingerbread,' first released December 2010, continues to be the most popular version, Android 4.1 'Jelly Bean' has made rapid, albeit overall modest, progress.
Android updates are painfully slow, almost glacial, in making their way to user's devices. However, it seems that the latest Android 4.1 release, codenamed 'Jelly Bean,' is seeing quite rapid, albeit overall modest, adoption rates.
According to data collected by Google, based on devices accessing the Google Play store within a 14-day period up to August 1, the new Android version is already installed on 0.8 percent of devices.
Android 4.1 'Jelly Bean' was officially unveiled at Google's I/O conference on June 27th, and was released as an over-the-air (OTA) update for the Samsung Galaxy Nexus on July 11, and was preinstalled on the Nexus 7 tablet which has been making its way to enthusiastic consumers since mid-July.
While Google doesn't break down the data based on devices, it is likely that the Samsung Galaxy Nexus smartphone and the Nexus 7 tablet make up the bulk of these devices running 'Jelly Bean.'
Comparing this latest data to that collected in the 14 days up to June 1st we find that apart from 'Jelly Bean,' only Android 3.2 'Honeycomb' and Android 4.0 'Ice Cream Sandwich' have gained ground, up 0.2 and 9.1 percentage points respectively.
The most popular Android version continues to be Android 2.3 'Gingerbread' with a 60.3 percent market share on Google's app store. This version was first released December 2010 and last updated September 2011.
If you currently own an Android smartphone or tablet, then history shows that you're unlikely to see this latest update delivered to your device. Many of the major players appear to have little to no interest in delivering the update to their users.
Google is primarily interested in new handset activation and increased market share above all else, not in creating a unified ecosystem. The handset makers have sold you a phone and hope to never hear from you again until it's time to buy again. And, not to mention, the carriers already have you hooked up to a multi-year contract and don't care a jot about what operating system your smartphone or tablet runs.
The problem is that while Android updates have to go from Google to the phone manufacturers, then to the carriers before being sent to devices, iOS updates go from Apple directly to devices. Aftermarket firmware projects such as CyanogenMod work to bypass this lengthy and laborious chain and deliver updates for hardware direct.
This lack of Android updates not only denies users access to new features, but is also means that security vulnerabilities are not patched, leaving both devices and the data they contain open to hackers.

Jumat, 18 Mei 2012

How to use Android animation listeners

Takeaway: This tutorial shows how to use Android animation listeners when simple time-based callbacks aren’t enough and XML-based animation sets get too hairy.

I enjoy working with Android’s animation framework, as you might have guessed by reading my tips on creating a custom “spinner”, chaining animations, and using the ViewFlipper widget. It’s still a bit loosey-goosey when compared to iOS, but that doesn’t make it any less powerful. Also, animations in Android are a lot of fun!
In this post I demonstrate how I use Android animation listeners when simple time-based callbacks aren’t enough and XML-based animation sets get too hairy. You can follow along with the tutorial, or download and import the project.
1. Open Eclipse and start a new Android project targeted at Android 1.6 or higher. Be sure to rename the startup activity Main.java.
2. I’m using a small PNG image I created in GIMP; I call it heartbeat.png, and it’s just a simple gradient (Figure A). In your /res folder, create a /drawable directory and store the image there.
Figure A

3. Next we need to create a new directory in the /res folder called /anim — this is where we place our actual animations. In this instance, I created four XML animations. They are all transformations, and the idea is to move our heartbeat image left to right on the display, with a “blip” in the middle that simulates a heart monitor display at a hospital bedside. I’m not going to go through the animations line by line. If you need to brush up on Android XML-based animations, Google’s developer guide is the presiding authority; you should refer to the section titled View Animation for a rundown on transformations.
xform_left_to_right_begin.xml
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fromXDelta="5%p"
android:toXDelta="50%p"
android:fromYDelta="50%p"
android:toYDelta="50%p"
android:fillBefore="true"
android:duration="900"
android:fillAfter="true"/>
xform_to_peek.xml
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fromXDelta="50%p"
android:toXDelta="60%p"
android:fromYDelta="50%p"
android:toYDelta="30%p"
android:fillBefore="true"
android:duration="200"
android:fillAfter="true"/>
xform_from_peek.xml
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fromXDelta="60%p"
android:toXDelta="70%p"
android:fromYDelta="30%p"
android:toYDelta="50%p"
android:fillBefore="true"
android:duration="200"
android:fillAfter="true"/>
xform_left_to_right_end.xml
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fromXDelta="70%p"
android:toXDelta="90%p"
android:fromYDelta="50%p"
android:toYDelta="50%p"
android:fillBefore="true"
android:duration="400"
android:fillAfter="true"/>
4. The last resource we need to get in place is our layout. Inside the /res/layout folder, add a main.xml file. The contents are nothing more than a text view and an image view tucked inside of a linear layout.
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:padding="25dip"
android:textColor="#ffffff"
android:text="Animation Listener Demo"
android:layout_gravity="center"
android:gravity="center"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/heartbeat"
android:id="@+id/blip"/>
</LinearLayout>
5. We are ready for our /src folder and the Main.java, which sits behind our layout. We want to extend activity and implement animation listener. We will also want a couple of class-level variables.
Main.java
package com.authorwjf.beep;
import android.app.Activity;
import android.os.Bundle;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.view.animation.Animation.AnimationListener;
import android.widget.ImageView;
public class Main extends Activity implements AnimationListener {
private int state_machine = 0;
private Animation mAnim = null;
}
6. Next we will need to override both the on create and the activity on stop. If you don’t handle the on stop case, you can expect the app to behave unpredictably when there is an interruption like a phone call.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mAnim = AnimationUtils.loadAnimation(this, R.anim.xform_left_to_right_begin);
mAnim.setAnimationListener(this);
ImageView img = (ImageView)findViewById(R.id.blip);
img.clearAnimation();
img.setAnimation(mAnim);
img.startAnimation(mAnim);
}
@Override
protectedvoid onStop() {
super.onStop();
try {
ImageView img = (ImageView)findViewById(R.id.blip);
img.clearAnimation();
mAnim.setAnimationListener(null);
} catch (Exception e) {
//log
}
}
7. The final step is to implement the animation listener callback. In this instance, I’m only interested in loading a new animation when the current one ends. However, we are still required to override both the on start and on repeat functions.
@Override
publicvoid onAnimationEnd(Animation a) {
a.setAnimationListener(null);
switch (state_machine) {
case 0:
a = AnimationUtils.loadAnimation(this, R.anim.xform_to_peek);
state_machine=1;
break;
case 1:
a = AnimationUtils.loadAnimation(this, R.anim.xform_from_peek);
state_machine=2;
break;
case 2:
a = AnimationUtils.loadAnimation(this, R.anim.xform_left_to_right_end);
state_machine=3;
break;
case 3:
a = AnimationUtils.loadAnimation(this, R.anim.xform_left_to_right_begin);
state_machine=0;
break;
}
a.setAnimationListener(this);
ImageView img = (ImageView)findViewById(R.id.blip);
img.clearAnimation();
img.setAnimation(a);
img.startAnimation(a);
}
@Override
public void onAnimationRepeat(Animation arg0) {
}
@Override
public void onAnimationStart(Animation arg0) {
}
At this point, the app should be ready to compile and run (Figure B). If you have an actual Android device, I recommend trying it on the physical hardware. It runs on the emulator, but the animations tend to be a bit jerky.
Figure B

After you’ve had a chance to run it as is, take a few minutes to go back and play with the timing variables in the /anim folder. You can produce some pretty cool effects. I think you’ll find at the end of the day, Android’s animation listener is one more arrow you can tuck inside your digital quiver.

Minggu, 13 Mei 2012

Antivirus Free 2.11 (Android)


 
AVG Antivirus for Smartphones & Tablets automatically detects harmful Apps & SMS AVG Mobilation is a free security solution that protects your phone from viruses, malware, spyware & online exploitation in real-time.

Features:

  • Scan apps, settings, files, and media in real time
  • Find/locate your lost or stolen phone via Google maps
  • Lock and wipe your device to protect your privacy
  • Kill tasks that slow your phone down
  • Browse the web safely and securely

    AVG Antivirus Free – security software for Android™.
  • Keep your device safe with just one click.

    A closer look at AVG Mobilation suite:
  • AVG Mobilation protects you from threats to your security, privacy and online identity by focusing specifically on the mobile environment.
  • With AVG’s free antivirus for Android you’ll receive
    effective, easy-to-use virus and malware protection, as well as a real-time scanner, phone locator, task killer, app locker and local device wipe.

    Real-time security scanner protection
  • Keeps you protected no matter how you download your apps or games

    AntiVirus Free also:
  • Protects against malicious apps from viruses, malware and spyware
  • Identifies unsecure device settings and advises on how to fix them.
  • Ensures contacts, bookmarks and text messages are secure and safe
  • Checks media files for malicious software and security threats
  • Protects you from phishing attacks
  • Can be run daily, weekly, or on demand

    Anti-theft protection and Phone Location:
  • Locate your lost or stolen mobile phone and get help with finding it via Google maps
  • Turn your phone GPS on remotely and have the device send its location using GPS
  • Lock your phone remotely via our Mobile Control Panel or by sending SMS to your phone to protect your data
  • Set a lock screen message to help the locator find you
  • Make your device ring even if your phone is on silent mode

    Safe Web Surfing:
  • Stay safe and secure from phishing and malware while surfing the web!

    Task killer:
  • Kill tasks that slow down or freeze up your device.

    App locker and mobile privacy:
  • Lock apps to protect your privacy and safety or lock your device setting to secure your device configuration.

    Local wipe:
  • Completely wipe contacts, text messages, photos, browser history, calendar and wipe the SD card
  • Tune up
  • List apps’ battery and storage consumption levels to assist in tune up of device resources

    Antivirus free languages supported:
    English, German, Spanish, French, Japanese, Korean, Chinese, Portuguese, Russian, Arabic, Italian, Polish, Czech, Dutch and Hebrew.
  • Jumat, 11 Mei 2012

    Researchers spot fake mobile antivirus scanners on Google Play

     
    Summary: Security researchers from AegisLab have spotted numerous fake mobile antivirus scanners, currently available for download at Google’s Play marketplace.



    Think that just because you’re downloading an application from an official application store, you’re safe from malicious software? Think twice.
    Security researchers from AegisLab have spotted numerous fake mobile antivirus scanners, currently available for download at Google’s Play marketplace.
    This isn’t the first time that a fake mobile antivirus has been spotted in the wild, and definitely not the last. Last year, security researchers from CA spotted a bogus Kaspersky-branded fake mobile antivirus application.
    Users are advised to only download applications from known and trusted publishers, and to to avoid secondary marketplaces as much as possible, and to also double-checked that they’re downloading the official version of a particular application, not a bogus version of it.
    Find out more about Dancho Danchev at his LinkedIn profile, or follow him on Twitter.

    Rabu, 09 Mei 2012

    Nymgo 1.11 (Android)



    Link Download

    Nymgo is a VoIP calling service that lets you call anyone in the world at the lowest rates. Our mobile app has: No hidden fees or charges, you see the price of the call before you make it Instant SMS messaging Easy contact list Simple account management Credit display Local and international high quality calls at the lowest prices Now you can always be in contact with your family and friends. Download now!Recent changes:- Features Improvements- Graphical improvements- Bug FixesContent rating: Everyone













    BeejiveIM GTalk Google Talk 3.5.3 (Android)







    Beejive IM – instant messenger v3.5.3
    Requirements: Android 2.1 +
    Review: BeejiveIM apk is the On-the-spot message, chat, & IM on INTENT, Yahoo, GTalk, MySpace, Jabber, Facebook, MSN
    BeejiveIM apk, talk, & IM on AIM, Yahoo, ICQ, GTalk, MySpace, Jabber, Facebook, MSN (Windows Live Messenger or WLM). BeejiveIM apk is an IM application that allows you to chat / instantaneous message by having all your IM buddies anywhere you go! Chat on OBJECTIVE, Yahoo, ICQ, GTalk, MySpace, Jabber, Facebook, MSN (Windows Live Carrier or WLM).
    BeejiveIM apk Ticket Features:
    - BeejiveIM apk utilizes your being present facts plan: no per-message costs.
    - Reliable and also effective networking: be linked 24/7, and also it’s peaceful on your electric battery.
    - Be connected also after you close the application. Obtain alerted easily when you acquire a cutting-edge message by having Push Notifications (OS 2.2 +).
    - Works with many different IM networks, a number of accounts each network: INTENTION ® / iChat, MSN ®, Yahoo! ®, GoogleTalk ®, Facebook IM, Jabber, and also MySpace IM.
    - Deliver as well as get documents, consisting of images as well as voice notes. View as well as ahead gotten papers.
    - Desktop-like on-the-spot messaging with all of your IM pals through a single instinctive ui.
    To install Beejive IM – instant messenger v3.5.3  apk click HERE

    SMS Tracker 2.40 Beta 2.40 BETA (Android)

    Remotely track and monitor all SMS, MMS, text messages, calls, and GPS location.


    Gizmoquip SMS Tracker is the most complete remote tracking and monitoring system for Android phones. By installing the SMS Tracker Agent on the target phone, you can remotely read all inbound and outbound SMS Text messages, MMS multimedia messages, photos sent and received, view phone call logs (including name, number, and length of call), web browsing history and view GPS location information on a map. All phone usage information can be remotely viewed on any web browser.





    • SMS Tracking – Intercept text messages. Read all inbound and outbound text messages. Details include time and date, phone number, contact name and location of the target phone.

    • MMS tracking - Intercept MMS multimedia messages. Read and view all inbound and outbound MMS messages. See what photos are sent to and from the target phone. Details include photo, time and date, phone number, contact name and location of the target phone.

    • Browser Tracking – monitor all web browser activity on the target phone. Know which web sites were visited, which pages were viewed and when. Also identifies the location of the phone every time the browser is used.
    • GPS Tracking – view GPS location information on the map. Know when where the phone is located at all times.

    • Call Logging – Monitor all inbound, outbound and missed calls. Identifies the phone number, contact name, call duration, and location of the phone for every call.
    If you want to know where your kids are, just send them a text message. The location of the phone is recorded every time it sends or receives a text message.
    To use SMS Tracker, install it on the device you wish to monitor and complete the registration process. Registering the device, ties the device to the email address you supply. After the device is registered, you will receive a confirmation email and are ready to start tracking the target phone.


















    Unlike other monitoring solutions, SMS Tracker does not just forward a message to your phone via SMS which can cost you money, it saves the messages on a remote server that only you can access.

    • Silently monitor all inbound and outbound SMS messages.
    • Gizmoquip is a US Based company
    • Does not use SMS forwarding which can incur additional costs.
    • Integrates with the contact data base so you know the names and the numbers of people communicating with your child.




    Keywords: SMS tracker, SMS tracking, SMS monitoring, SMS spy, SMS logger, SMS logging, Text tracker, Text tracking, Text message monitoring, Text message spy, Text message logger, Text message logging, Phone tracker, Phone tracking, Phone monitoring, Phone spy, Phone logger, Phone logging, Call tracker, Call tracking, Call monitoring, Call spy, Call logger, Call logging, GPS tracker, GPS tracking, GPS monitoring, GPS spy, GPS logger, GPS logging


    link Download 

    HotmailMX 1.0 (Android)





    A lightweight client based hotmail.
    • Receive messages on your phone without delay, by automatically synchronizing e-mail
    • Check your Hotmail folders, including subfolders
    • Send pictures from your phone via Hotmail
    • Allows the use of multiple Hotmail accounts (login and logout(
    • Send, receive and view attachments 








     link
















    Price     Free
    Version   1.0
    Downloads    10-50
    Size             154 KB

    netTALK App [NEW App] 2.0.4 (Android)



    The ALL NEW netTALK Smartphone App! FREE calling over WiFi or 3G/4G to US/Canada, without using cell minutes.

    // FREE CALLS THROUGHOUT THE USA & CANADA FROM ANYWHERE IN THE WORLD

    With the netTALK App, you can make calls throughout the U.S. and Canada from anywhere without using your cell phone minutes. 


    If you have poor cellular coverage at home, make calls over Wi-Fi. 
If you are traveling abroad, avoid roaming charges by calling back home over Wi-Fi for FREE. Remember, there is no charge for calls made to the U.S. or Canada.

    // REGISTRATION PROCESS

    1. Download this app for FREE 

    2. Visit http://m.nettalk.com on the web or device to register 

    3. Start the app on your device and enter your Username/Password (case sensitive)








    // FEATURES INCLUDE
    1. Free calling to the U.S. and Canada
    
2. Connectivity through Wi-Fi/3G/4G 

    3. Turn any Android device into a phone 

    4. Import your contacts from your phone 

    5. Free 411 Directory Assistance
    6. Free Conference bridge - just dial 2663 (conf)

    // PLEASE NOTE
    1. Must be on Wi-Fi/3G/4G 

    2. Must create a netTALK account to use this app
    3. You will NOT receive an inbound phone number - outgoing calls only
    4. Free calls limited to 30 min talk time per call
    5. Limited to 500 free min a month
    6. International data roaming charges may apply
    7. Operator data charges may apply

    8. Dialing 911 on the application will not work


    // FROM THE MAKERS OF THE netTALK DUO 
Winner of PCMag.com and Laptop Editors’ Choice awards, the netTALK DUO is a revolutionary VoIP device and digital phone service. The netTALK DUO enables free nationwide calls to any phone in Canada and the U.S. from anywhere in the world, as well as low international rates and a slew of other features. No computer is necessary as the netTALK DUO simply plugs directly into a router or modem or via WiFi with our NEW netTALK DUO WiFi.


    The netTALK DUO is available online and at leading retailers, for a suggested retail price of $49.95, and the DUO WiFi at $64.95 which includes an entire first year of phone service and all features, and only $29.95 for each additional year, with no additional fees or long-term contracts.

    netTALK offers enhanced calling plans which makes international calls even more affordable. The North American Add-on is only $70 per year for calling throughout the U.S., Canada, Mexico and Puerto Rico. The International Add-on is only $120 per year for calling up to 60+ countries.

Are you interested in purchasing the DUO or DUO WiFi? 
Contact us at 1-800-309-1979 (Mon - Fri 9:00am - 7:00pm EST, Sat 10:00am - 5:00pm EST).

    
//A FREE, DYNAMIC COMMUNICATION EXPERIENCE
In preparation for a more dynamic and richer smart phone experience, we have instituted a 500 monthly minute limit for all free smart phone app users. Once the limit is reached, you will have to wait until the next month to use the app, when minutes are replenished. Our goal is to continue to build and deliver superior products to help consumers save money. Expect many new enhancements in the year to come.
    If you think you will come close to that limit or you are interested in saving even more on your local, long distance, and international calls, netTALK offers a variety of products that can save you hundreds.



    // FEEDBACK 
- Please continue to send feedback to smartphone@nettalk.com
    Learn more about netTALK at www.netTALK.com