Tampilkan postingan dengan label Google. Tampilkan semua postingan
Tampilkan postingan dengan label Google. Tampilkan semua postingan

Nexus 5 : First Smart phone with KitKat Inside from Google.

Posted by Unknown Rabu, 06 November 2013 0 komentar
Nexus 5
1. Slimmer, lighter design.
  • Nexus 5 is precision-built from strong materials, and the intelligently simple design showcases more of what matters to you. At only 4.59 oz and 8.59 mm thin, it’s the most powerful Nexus phone yet.
2. Speed and power to spare.
  • With 4G/LTE and ultra-fast Wi-Fi, Nexus 5 keeps you connected at blazing speeds. Add in the cutting-edge 2.26 GHz Qualcomm Snapdragon™ 800 processor and you’ll race through games, zip around the web and switch between apps at the flick of a finger.
3. Stunning 5” display.
  • More room to do what you do, and better colours too. Nexus 5 gives you a Full HD display so that you can see every detail in lifelike colour with less glare and a wider viewing
.........Continue »»»»

Baca Selengkapnya ....

Android 4.4, KitKat : Top 10 features you like.

Posted by Unknown Selasa, 05 November 2013 0 komentar
KitKat 4.4: "Smart, simple, and truly yours !"
Just in time for Halloween, Google announced two new treats for Android fans. First, they unwrapped their latest platform release, KitKat, which delivers a smarter, more immersive Android experience to even more people.  And second, they introduced Nexus 5- a new Nexus phone developed with LG.

    Top 10 features of KitKat

    1. Just say “Ok Google”

    You don’t need to touch the screen to get things done. When on your home screen or in Google Now, just say “Ok Google” to launch voice search, send a text, get directions or even play a song.

    2. Better media experiance

    While listening to music on your device, or while projecting movies to Chromecast, you’ll see beautiful full-screen album and movie art when your device is locked. You can play, pause, or seek to a specific moment. Android 4.4 on Nexus 5 lets you listen to music for longer - up to 60 hours of audio playback.
    .........Continue »»»»

    Baca Selengkapnya ....

    Android ADT-Bundle Installation on Windows and Ubuntu : In 2 Steps.

    Posted by Unknown Senin, 09 September 2013 0 komentar

    1. Get the Android SDK

    The Android SDK provides you the API libraries and developer tools necessary to build, test, and debug apps for Android.
    With a single download, the ADT Bundle includes everything you need to begin developing apps:

    • Eclipse + ADT plugin
    • Android SDK Tools
    • Android Platform-tools
    • The latest Android platform
    • The latest Android system image for the emulator

    .........Continue »»»»

    Baca Selengkapnya ....

    Android 4.1 : Jelly Bean, Features

    Posted by Unknown Kamis, 02 Agustus 2012 0 komentar

    What is Android Jelly Bean ?

    Android 4.1, Jelly Bean, is the fastest and smoothest version of Android yet. Jelly Bean improves on the simplicity and beauty of Android 4.0, and introduces a new Google search experience on Android. 
    Here I would like to share best of Jelly Bean.

    Android Beam

    • With Android Beam, you can now easily share your photos and videos.
    • Instantly pair your phone or tablet to Bluetooth devices like headsets or speakers that support the Simple Secure Pairing standard by just tapping them together.
    .........Continue »»»»

    Baca Selengkapnya ....

    Google Place APIs

    Posted by Unknown Kamis, 26 Juli 2012 0 komentar


    Google Place APIs



    Google Place API is a service which provides the search system for places. The search with the google place API can be perform by two ways.


    1) Text String Search - a normal search specify the search string as text
    2) User location based search - a search specified based on the location parameters (latitude,longitude)


    You can integrate the places search based on the location in your android application. See the previous example to determine the location of a user and draw a overlay icon pointed to that location of the user.


    This post is explaining the implementation of place search by google place API.


    The HTTP URL for the place search is as follows

    https://maps.googleapis.com/maps/api/place/search/output?parameters

    The output could be json or xml and the required parameters are as follows


    key - Your application key.
    location - latitude,longitude of the place to search
    radius - search area in which the search should perform for location
    sensor - true or false based on the request is initiated by a devices having a location sensor (GPS) enabled or disabled


    The following is the list of optional parameters to refine your search


    Keyword — A term to be matched against all content that Google has indexed for the place
    Language — The language code, indicating in which language the results should be returned.
    Name — A term to be matched against the names of Places. Results will be restricted to those containing the values passed here.
    Rankby — Specifies the order in which results are listed. Possible values are:

    · Prominence - This option sorts results based on their importance.
    · Distance - This option sorts results in ascending order by their distance from the specified location.
    · Types — Restricts the results to places matching at least one of the specified types. Types must be separated with a pipe symbol (type1|type2|etc).
    · Pagetoken — Returns the next 20 results from a previously run search.



       Code : The following few line of code explain how can you call google web    service in your application.

        String result = "";
    HttpClient httpclient = new DefaultHttpClient();
    HttpGet request = new HttpGet(url);
    ResponseHandler<String> handler = new BasicResponseHandler();
    try {
    result = httpclient.execute(request, handler);
    } catch (ClientProtocolException e) {
    e.printStackTrace();
    } catch (IOException e) {
    e.printStackTrace();
    }
    httpclient.getConnectionManager().shutdown();

    The Google Place APIs provide a quick way to integrate the context aware search to your application. 


    If you like the post please provide your feedback. 


    Thanks
    Creative Android Apps







    Baca Selengkapnya ....

    Android Jelly Bean released to play on Open Source

    Posted by Unknown Kamis, 19 Juli 2012 0 komentar

    Excitement Over - Google Released Jelly Bean Source Code in AOSP


    After a lot of excitement for Jelly Bean (Android 4.1) Google recently released its version to the open source community to develop and release the future versions and releases.


    Very soon we can see more and more devices running the Jelly Bean (Android 4.1). Currently Google released the native binaries for Nexus 7 tablet and Galaxy Nexus. Google's Jean Baptiste Queru recently announced the release of Android 4.1 on AOSP (Android Open Source Project). The name of the tagged release is android-4.1.1_r1 as JBQ stated in the Android Building Group. The name of the development branch is jb-dev. We recommended that you create new clients, even if you're working in the master branch.It'll make your clients smaller and faster to sync.


    Now the developers can create there customized builds of Jelly Bean and create new applications with new android power of Jelly Bean. Jelly Bean is released with lots of exciting features and APIs for developers providing new means to sharing the applications and connecting the devices.


    See more about the android 4.1 Jelly Bean Features here


    http://creativeandroidapps.blogspot.in/2012/06/whats-new-in-jelly-belly-android-41.html


    You can download the latest source code from https://android.googlesource.com/.

    If you like the post please share to your friends and feedback us with your valuable comments.


    Thanks
    Creative Android Apps



    Baca Selengkapnya ....

    Nexus 7 : New Android Tablet from Google

    Posted by Unknown Selasa, 17 Juli 2012 0 komentar
    Nexus 7
    The Nexus 7 is an 7-inch Android tablet computer co-developed by Google and Asus, the first tablet entry in the Nexus series.Nexus 7 was built to bring you the best of Google in a slim, portable package that fits perfectly in your hand. 

    The best of Google


    Nexus 7 comes with all your favorite Google Apps – like Gmail, Chrome, Google+ and YouTube – putting the best of Google in the palm of your hand. Easy to use, everything automatically syncs across your tablet, phone and computer. With tons of free cloud storage and features you’ll find nowhere else, Nexus 7 brings the best of Google together in one simple, beautiful device.Thin, light and portable
    .........Continue »»»»

    Baca Selengkapnya ....
    Trik SEO Terbaru support Online Shop Baju Wanita - Original design by Bamz | Copyright of apk xda.