Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
HOW TO CREATE TAB LAYOUT USING TABHOST WITH TABWIDGET AND FRAMELAYOUT
In this blog I will guide you to “Create Tab Layout in Android using TABHOST with TABWIDGET and Framelayout”. This will be done by adding android tabs to your app using XML tabhost tabwidget.
...
Xpath in Selenium
The query language which is used to locate elements in XML document is "xpath".
XML is the context in which xpath exist. One or more elements exists inside the XML document. Every element must have a start and end tag if it contains so...
How to create custom toolbar and use the same in different activity in android.
Here we will learn how to create custom toolbar and use it in different activity using <include> tag in xml file of the activity.
1) We will design the layout for the toolbar in our project's layout directory, I have named it as mtoo...
How to make custom button in android
To make Custom Button in android follow the steps mentioned below:-
1) Create a drawable resource file in your drawable folder and name it custom_button.xml.
2) Add the code written below in your custom_button.xml file .
custom_but...
How to convert a given XML into PHP array
Hello Reader's!, If you are developing the website that takes input in XML and you want it to convert in PHP, Then you have to use some of the library extensions to do so.
Let suppose you have the XML as given below:-
<tag1Version="1.0"&...
JSON and XML
JSON VS XML (RUBY)
JSON stands for JavaScript Object Notation. XML stands for EXtensible Markup Language. Both Json and Xml are used for exchanging data.
JSON is a light-weight text-based open standard design for human-readable data. It is...
How to create XML File in Java using DOM parser?
To create XML file in Java,here we are using DOM parser. By using the below code you can easily create XML file.
Write the below Java class to create a XML file:
CreateXMLFile.java
package com.babita;
import java.io.File;
import jav...
SQL SERVER - Generating XML - 1
Following is the XML which we want to create:
SELECT magazineId
, magazineName
, coverPage
, publishDate
, expiryDate
, isActive
,(
SELECT (
SELECT (
...