Android KitKat

Posted by Unknown Kamis, 31 Oktober 2013 0 komentar
Android KitKat is the first new major Android release since Jelly Bean 4.1. There are so many changes and new features that it's hard to list all of them. It's a release focused on optimizations, immersive interfaces and support for new hardware. There's also a new device that showcases the new features: Nexus 5.RAM is always an important issue when it comes to mobile devices, especially if they run...

Baca Selengkapnya ....

Android for all and the new Nexus 5

Posted by Unknown 0 komentar
Just in time for Halloween, we have two new treats for Android fans. First, we're excited to unwrap our latest platform release, KitKat, which delivers a smarter, more immersive Android experience to even more people. And second, we're introducing Nexus 5—a new Nexus phone developed with LG.The first thing you’ll notice about KitKat is we’ve made the experience much more engaging: the book you're...

Baca Selengkapnya ....

Properties with Colors and Backgrounds in CSS

Posted by Unknown Rabu, 30 Oktober 2013 0 komentar
Foreground color: the 'color' propertyThe color property describes the foreground color of an element.Sample code is given below copy and try it out... h1 { color: #990099; } h3{ color: #999999; } p { color: #990099; }'background-color' propertyThe background-color property describes the background color of elements.Sample code is given below copy and try it out... h1 { background-color: #990099;...

Baca Selengkapnya ....

Storage Options in Android

Posted by Unknown 0 komentar
Android provides several options for you to save persistent application data. The solution you choose depends on your specific needs, such as whether the data should be private to your application or accessible to other applications (and the user) and how much space your data requires.Your data storage options are the following:Shared PreferencesStore private primitive data in key-value pairs.Internal...

Baca Selengkapnya ....

Google Community Translation

Posted by Unknown 0 komentar
You might remember "Google in Your Language", the Google feature that allowed you to translate Google services. It was a great way to help Google support new languages, but you could also use it to find new Google features.It looks like the translation console will be back. There's a Google Community Translation page that links to a Chrome extension which is not available.I searched for the extension...

Baca Selengkapnya ....

New Features in Google+ for Android

Posted by Unknown 0 komentar
Mobile apps for social services are strange. Until now, the Google+ mobile app didn't allow you to copy the text of a post. You had to get the URL of the post, open the browser and copy the text there. I thought this must be a bug until I checked the Facebook app and noticed that you can't copy text.The latest version of the Google+ app for Android lets you copy the text of a post, copy comments,...

Baca Selengkapnya ....

Calling an External CSS to HTML document

Posted by Unknown 0 komentar
An external style sheet is simply a text file with the extension .css. Suppose our CSS file is inside the folder named "style" and the CSS file with file name "newstyles.css".The the code to link the html with CSS is given below .. <link rel="stylesheet" type="text/css" href="style/newstyles.css" />The line of code must be inserted in the header section of the HTML code.And if you have to give...

Baca Selengkapnya ....

Applying CSS to an HTML document - 3 Methods

Posted by Unknown 0 komentar
There are three ways you can apply CSS to an HTML document.In-line (the attribute style)One way to apply CSS to HTML is by using the HTML attribute style. <html> <head> Sample </head> <body style="background-color: #00FF00;"> The background color is green </body></html>Internal (the tag style)Another way is to include the CSS codes using the HTML...

Baca Selengkapnya ....

Basic CSS Syntax

Posted by Unknown 0 komentar
selector { property: value; }Here, selector : Says what HTML tag does property apply toproperty : Says about the property or functionality appliedvalue : Set property attributeseg : body {background-color: #00FF0...

Baca Selengkapnya ....

Introduction - Cascading Style Sheets - CSS

Posted by Unknown Selasa, 29 Oktober 2013 0 komentar
Cascading Style Sheets (CSS) is a fantastic tool to add layout to your websites. It can save you a lot of time and it enables you to design websites in a completely new way. CSS is a must for anyone working with web design.CSS is a style language that defines layout of HTML documents. For example, CSS covers fonts, colours, margins, lines, height, width, background images, advanced positions and many...

Baca Selengkapnya ....

Custom Google+ URLs

Posted by Unknown 0 komentar
Until now, vanity Google+ URLs were only for popular business, famous people, Google employees and some other special users. Now anyone can get a custom URL and replace the long Google+ URL with something more memorable. Unfortunately, you don't get to choose the URL: you can only pick from Google's preapproved URLs."If you meet the eligibility requirements, you can get a custom URL for your Google+...

Baca Selengkapnya ....

540 Million Google+ Users, 300 Million Core Users

Posted by Unknown 0 komentar
Google+ continues to grow and the growth rate is impressive, according to Google's stats. Back in December, Google announced that "235 million [people] are active across Google (+1'ing apps in Google Play, hanging out in Gmail, connecting with friends in Search), and 135 million are active in just the stream." Now Google says that 540 million people are active across Google each month and 300 million...

Baca Selengkapnya ....

Auto Awesome Action, Eraser and Movie

Posted by Unknown 0 komentar
Auto Awesome is a collection of features that create new images which use the photos you upload: panoramas, animations, HDR, better group photos. They're created automatically and Google now even sends notifications when they're ready.There are 3 new Auto Awesome features: 2 of them are only for photos (action, eraser) and the third one is for both photos and videos. Action is great for action photos....

Baca Selengkapnya ....

Google+ Photo Search Detects More Than 1,000 Objects

Posted by Unknown 0 komentar
Back in May, Google announced an impressive search feature that allows to find photos even if they don't include any useful metadata. "To make computers do the hard work for you, we've also begun using computer vision and machine learning to help recognize more general concepts in your photos such as sunsets, food and flowers." Here are more details: "This is powered by computer vision and machine...

Baca Selengkapnya ....

Yahoo Image Search's Fullscreen Slideshow

Posted by Unknown Minggu, 27 Oktober 2013 0 komentar
One of the features I've always wanted to see in Google Image Search is slideshows. Google lets you quickly go to the next image result using the right arrow shortcut, but a slideshow button would make things even easier. Picasa Web search used to have this feature. I know that webmasters will say that this wastes their bandwidth, so let's get past this.It turns out that Yahoo already has this feature....

Baca Selengkapnya ....

Google Takeout's New Interface

Posted by Unknown 0 komentar
A few weeks ago, Google updated the Takeout interface and it's now much easier to download all your data. The service supports 17 products: Google Drive, YouTube, Blogger, Google+ Photos, Contacts, Hangouts, Location History and more.When you click "create an archive", Google selects all the products that are available and shows the size of the ZIP archive you can download. Archives larger than 2GB...

Baca Selengkapnya ....

Read A Text File in Corona

Posted by Unknown 0 komentar
Reading a text file in corona is very eazy.First get the file path and using the file path read the content in the file. Check the code below. display.setStatusBar( display.HiddenStatusBar ) -- read the file pathlocal filePath = system.pathForFile( "myFile.txt", system.ResourceDirectory )local file = io.open( filePath, "r" )if file then -- read all contents of file into a string local contents...

Baca Selengkapnya ....

Google WiFi Passport

Posted by Unknown Sabtu, 26 Oktober 2013 0 komentar
Google found a new way to get people online: a service called WiFi Passport that's currently tested in Jakarta (Indonesia) and allows people to connect to Wi-Fi hotspots for free or at affordable rates."WiFi Passport powered by Google is a fast, easy and affordable way to get online when you're out and about in Jakarta. To use it, just get a voucher, sign into your Google account, enter the code then...

Baca Selengkapnya ....

YouTube Drops Support for 1080p Streams in the Regular HTML5 Player

Posted by Unknown 0 komentar
I've mentioned in the previous post about Media Source Extensions and YouTube's HTML5 player. For now, only Chrome, Opera and IE11 for Windows 8 support Media Source Extensions. If you're using Firefox, Safari or an old version of IE, you're out of luck.Why is this important? YouTube switched to adaptive streams in the Flash player and now does the same thing for the HTML5 player, but this requires...

Baca Selengkapnya ....

YouTube Shows if Your Browser Supports Media Source Extensions

Posted by Unknown 0 komentar
YouTube has recently updated the HTML5 player's page and now shows if your browser supports Media Source Extensions for H.264 or WebM VP9. I loaded the page in various browsers and Chrome is the only browser that supports both containers and Media Source Extensions. Internet Explorer 11 also supports Media Source Extensions, but you need to install a Google software to play WebM videos in IE.The W3C...

Baca Selengkapnya ....

Google Tests Image Ads for Top Search Results

Posted by Unknown Jumat, 25 Oktober 2013 0 komentar
Back in 2010, Google launched a feature that allowed local businesses to add yellow markers to the map and promote their websites. Tags were actually ads that were placed inside local search results. It was a weird way to mix organic search results with ads and this feature was discontinued in 2011.Now Google tests a similar feature for web search results. Instead of adding links and markers, advertisers...

Baca Selengkapnya ....

Google Maps Easter Egg for Philadelphia

Posted by Unknown Kamis, 24 Oktober 2013 0 komentar
Here's a cool Easter Egg: search for Philadelphia, click the map thumbnail from the right sidebar and notice that your query is replaced by "city of brotherly love", one of the nicknames of the city. "Popular nicknames for Philadelphia are Philly and The City of Brotherly Love, the latter of which comes from the literal meaning of the city's name in Greek," informs Wikipedia.{ Thanks, Emanuele....

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