Categories
Tags
Favourite posts
Getting an e-Commerce website online might sound like a huge undertaking,...
WebView displays web pages. But we are interested not only in web-content...
Google Maps is a very famous and helpful service, which firmly entrenched...
RSpec is an integral part of Test Drive Development (TDD) and its main id...
When developing a web application that extensively works with user input ...
Field configuration defines behavior of all standart (system) fields and ...
As you might have already heard, the latest stuff for upgrading rails was...
User experience (abbreviated as UX) is how a person feels when interfacing with a system. The system could be a website, a web / mobile application or desktop software which is generally denoted by some form of human-computer interaction.
Getting an e-Commerce website online might sound like a huge undertaking, but it’s not as hard as you may think. In this article I’ll shine some light on 5 main steps necessary to launch your website into World Wide Web orbit.
WebView displays web pages. But we are interested not only in web-content demonstration we want to interact with this web-content. In this article we’ll try to explain some details of this process.
First of all if you want to download web pages from Internet, please do not forget about this permission in AndroidManifest file.
<uses-permission Android:name="Android.permission.INTERNET" />
There are several ways to set content for WebView:
WebView webView = (WebView) findViewById(R.id.WebView);
// Ex 1: set URL address:
webView.loadUrl("https://www.android.com/");
// Ex 2: set .html from a raw folder:
webView.loadUrl("file:///Android_res ...
CSS 3D Transform model was presented as a draft specification in March 2009. This model allows Web developers to create user interfaces more attractive and interesting using advantages of 3D.
Google Maps is a very famous and helpful service, which firmly entrenched in our lives. With the Google Maps Android API you can add maps based on Google Maps data to your application. The API automatically handles access to Google Maps servers, data downloading, map display, and response to map gestures. You can also use API calls to add markers, polygons, and overlays to a basic map, and to change the user's view of a particular map area.
In this article we’re going to show you how to work with Google Maps Android API.
1. Create project on ...