async and defer Script attributes are used to alter when the JavaScript execution happens in HTML page. When a HTML page is rendered by the browser following happens : Page is parsed from top to bottom and rendered. Now if the HTML page contains a script tag following happens: HTML page is parsed by the […]
Archives for August 2017
Using SQLite in Android
SQLite is a RDBMS(relational database management system).There are many other RDBMS available such as Oracle, MySQL and SQL Server.SQLite differs from these RDBMS since it is not a client server database management system.Unlike other RDBMS SQLite is a embedded RDBMS. SQLite is embedded as a part of the the mobile application.This means that you don’t […]
Understanding XAML
XAML stands for Extensible Application Markup Language.It is used for developing the GUI of WPF applications.We can initialize objects using XAML.It can be used to easily create hierarchy of objects. XAML allows to decouple the UI design from the WPF application logic.This means that UI designers and developers can work independently and later integrate the code and […]
ListView in Android
ListView is used to display multiple items at a time.The items are displayed in rows.This allows the user to view multiple items at a time.Also the user can select the items from the list view. To use listview in a android application you first define the layout or view of the Activity.In this layout you declare […]