Need Horizontal List view like Flipkar app home page

Hi, Please guide me or provide any help full links to develop the app with Horizonal list view instead of Vertical Listview. Where the app of Flipkart implemented Horizontal scroll view or Horizontal lit view in home page Thanks is advance

Asp.net calendar control properties and events

These are the following Useful Properties and the events of the Calendar control: DayNameFormat: style of the days of the week. Possible values are FirstLetter, FirstTwoLetters, Full, Short, and Shortest. ...

Difference between Convert.ToString() and ToString()

The ToString() method, expects that the object which you invoke in your program should not be Null. If the object is taking null value,then user will get the Null Reference Exception at run time and program will not be executed completely.  ...

Datatype conversions in c#

These are the following Data Type Conversion in c# Implicit conversion Explicit Conversions Difference between Parse() and TryParse() Implicit conversion is done by the compiler: 1.When there is no loss of information if the conver...

CompareValidator control in asp.net

CompareValidator control is used to compare the value of one control with the value of another control or a constant value. The comparison operation can be any of the following. Equal GreaterThan GreaterThanEqual LessThan LessThanEqual ...

RegularExpressionValidator control in asp.net

RegularExpressionValidator is very useful and powerful validation control in asp.net We can check the value of an associated input control that matches the pattern specified by a regular expression or not. The Property which is specific to Regula...

How to control the media playback using JavaScript:

While embedding a video to your webpage, very first thing you need to keep in mind is the browser support, like where this will work and where it will not. Only the latest versions of most browsers support native video playback using HTML5's "vid...

Server.Transfer vs response.Redirect

Server.Transfer vs response.Redirect Server.Transfer The sequence of transfer in Server.Transfer: 1)The transfer is done by the server. 2)Suppose there are two asp.net pages Webform1.aspx and Webform2.aspx. The navigation from Webform...

State management in ASP.NET

State Management: State management is the process used to manage the state of an object. There are two types of state management process which is important and used by every web applications. These two states are: Client Side Server Side...

PASSING ARGUMENT TO A FUNCTION BY REFERENCE IN C

Passing argument to a function by reference is also know as call by reference. In this method if we change the parameter given in the function will effect the argument. For passing a value by reference, we use pointers. As we use pointers in ca...

Program to check whether a number is Armstrong number

Program to check whether a number is Armstrong Number or not: Armstrong number is a positive number whose sum of cubes of all individual digits is equal to the number itself. Like 371(3x3x3+7x7x7+1x1x1=371) is an armstrong number as the sum of...

How to validate email address

It is very important to validate the email while validating an HTML form. An email is taken as a string which is separated into two parts by the @ symbol. 1. user_info 2. a domain i.e., user_info@domain. The length of the user_info pa...

Enumeration in C#

Enumeration is a named value which is used to allocate various constant values to a single variable. This makes the program more easier to understand and maintain. Enumeration is also having better error checking techniques which additional secur...

FULL OUTER JOIN IN SQL

FULL OUTER JOIN If you want to combine the results of both LEFT and RIGHT join than we use FULL JOIN keyword. The joined table which created after FULL JOIN contains all records from both the two tables, and fills null value for those places...

How to represent the odd/even rows using alternate colors

We can create odd/even stripes with different alternate colors which is easier to identify and good to represent the data in alternate color format. We can use the css method to color the even/odd rows using class selectors. This is the case w...

Progress bar

Progress Bar Progress bar is used for up-to-date feedback from the user's action, it can also be made a user indeterminate.This bar will be helpful when the length of the task is unknown for the user. If you are using progress bar to show real p...

final, finally and finalize in Java

final, finally and finalize in Java final: The meaning of final keyword varies with it's usage with class,methods and variables. Class: When final keyword is placed before class keyword then that class cannot be inherited i.e final class...

How to use Right Join on two tables

Right Join: Right Join is used to join two tables and it return all rows from right table(table 2) and matching rows from table 1(left table). The result is NULL for unmatched rows for table 1(left table). Right Join keyword is used to apply R...

PASSING ARGUMENT TO A FUNCTION BY VALUE IN C

Passing argument to a function by value is also know as call by value. This method of passing arguments to a function copies the original value of argument into the formal parameter of a function. In other words if we change parameter which are ...

How to Draw path between two locations

In the below example I have created Drawing Polyline and Markers along the tapped position in Google Map. Polyline is a list of points where line segment are drawn between consecutive point. Here I have created fragment attribute in activity_mai...

Sanity Testing

Sanity testing is a software testing technique which is performed by the test team whenever a new build is received for testing. The main objective of this testing is to check if the section or code of the application is still working with a mino...

Difference between delete and free() in C++?

free() function and delete operator are used to deallocate the memory a pointer is holding. free() function is used when the memory is allocated to the pointer by either malloc(),calloc() or realloc() function, whereas delete operator is used wh...

Bootstrap-Pagination

Hello friends, Here is simple code of using Pagination. You can use this code to make your page more attractive and give a easy access by reaching on several pages from a single columns of links. Pagination is a navigation tool that will help...

MACROS IN C

MACROS A macro is a piece of statements(code) which we provide a name or give that piece of statements a name. so whenever we used that name which we provide to that piece of code in the program, that code get replaced by the contents of the...

Aggregate Functions

Aggregate Functions: Oracle has many built-in functions which are used to process numbers or strings. They are very useful as we can directly use them , we just have to write the aggregate function name and in braces the column name on which w...

How to use the CSS Selector for dynamically chaging the listing.

Here we will learn how we can use the css selector to change the representation of the the navigation listing or other listing.In the below example we have listed some of the air sports and water sports and we will change the representation of t...

How to validate coma seperated emails using Javascript

Hello Reader's, If you are developing the form for multiple email address as input, then you need to validate each email individually. You can do it by validating on submit or after submit. By using the Jquery script you can do it on user end,...

Device Debug for android and ios in flash

Device Debug is very simple ,You can check the app on you phone which the traces will be shown on your system simulator for androif you just simply download the device driver for your device, after this got to project debug configuration setting...

SQL CONSTRAINTS

SQL CONSTRAINTS A constraint is a rule or limitation that we place on the data in a database that we can put into a column(s). A constraint is part of the table. we can apply constraints when we create the table or afterwards. Constraints coul...

Error:Execution failed for task ':iTSM:transformClassesWithDexForDebug'

Please help me to resolve below error Getting Below error in Android studio after update the Compile and Build Tool version Please find the attached bild.gardle file early compileSdkVersion 21 buildToolsVersion "22.0.1" and asl...

Column Layout using HTML5

Explaining the use of column layout in CSS:- CSS column layout is helpful for dividing the text into columns. For example: The text in magazine/newspaper you have been generally come across the big text is divided into column with a colorful...

Assertion in java

Assertion: Assertion is a statement used to test assumptions of the programmer about the program. While, executing assertion it is always true but in case , it fails, JVM will throw an error named AssertionError. Assertion is mainly used for t...

How to change particular text font size in class using ttf file

In the below example code I have changed particular font size by using ttf file. Here I have added ttf file in assets folder using TypeFace class, I have also included zont zip file. You can see the below example it will clearly describe you How ...

How to use Left Join

Left Join: Left Join is used to join two tables and it return all rows from table 1 and matching rows from table 2. The result is NULL for unmatched rows for table 2. Left Join keyword is used to apply Left Join on two tables. Syntax for Le...

How to set text in Toolbar in android

In the below exmaple I have created Toolbar. Here I have used In activity_main xml.layout a toolbar and TextView, and In MainActivity I have used toast function. You can see the below example it will clearly describe you how to create Toolbar wi...

How to check that browser supports File api or not ?

Check browser support for File api : File api is a feature of HTML5. File api is basically for doing some processing on the local files. User can get the files mime type or last modified date etc. User can also achieve the drag and drop file uplo...

FOREIGN KEY

FOREIGN KEY Foreign key is used to setup relation between two tables in a database. A foreign key is a values that appear in both the tables in database system. The table which contain foreign key is called the child table while the table to...

ServletConfig Interface in servlets

ServletConfig interface: For each servlet, an instance of this interface is created by the container. With the help of this instance, information can be fetched from the configuration file (web.xml). Advantage: You don't need need t...

z-index in CSS

Z-index Definition:- z-index property specifies stack order of any element or it only works for the positioning of an element i.e when position is absolute, relative and fixed.The vale of Z-index mostly used -1, 0 ,1 -1 is used for the pos...

Zbrush and designing for Game Development

source: www.cgpinoy.org   Digital artists find ZBrush a fantastic sculpting and painting program for developing 3D mode...

UNION CLAUSE IN SQL

UNION CLAUSE The union operator in sql is used to combined two different queries into a singel table. For eg:-we have one table which have information about employee, also have another table that have information about their department, and t...

@media Screen

Media rule in CSS is very attractive way to define different style rules for various types of screens(tablets/mobile screen) Media queries look at the capability of the device and be used to check various things: Height and Width of the ...

Program to count number of vowels and consonants in a string

Counting number of vowels,consonants and digits in a string: In this program we are counting how many vowels ,consonants and digits are in the string which will be entered by the user. After user inputs a string , string will be iterated from...

How to create Floating action button using single LinearLayout layout

Hello Friends, In my last blog I have explained about how to create floating action button using CoordinatorLayout, LinearLayout, TextView and FloatingActionButton. But in this tutorial I have created a new floating action button layout using s...

MySQL Stored Procedure

MySQL Stored Procedure Stored Procedure 1)Stored Procedure are a set of declarative SQL statements which when created are compiled and stored in database.The main reason for their creation is that they are reusable. Stored procedure work d...

SEO Growth Hacker Plan: Learn and Promote your Business

STEP I- Website Optimization (One Time Effort During Development) Enhancing technical aspects of website (On-site) is the first SEO move. Your focus should be to optimize your website for high user friendly experience and make it readi...

Parsing expression in Data structure

Firstly to understand the parsing expression in data structure we should know about the arithmetic notations. There are three ways of writing arithmetic notations which are having same meaning:- 1. Infix Notation 2.Prefix Notation 3.Postfix N...

How to create floating action button layout in android

In the below code layout I have created floting action button layout. Here I have used CoordinatorLayout, LinearLayout, TextView and FloatingActionButton. FloatingActionButton move left or right when we changes layout_anchorGravity. In this layou...

Camera Zoom in and out problem

Hello everyone, Please help me . I am working on iOS + Cordova platform I am implementing Zooming functionality in Native iOS in Camera plugin. But in Which file I have to do that.. And i Want to Zoom camera within View. Please help guys ...

LOOPS IN JAVASCRIPT

LOOPS IN JAVASCRIPT A loop allows us to repeat or execute a set of statement multipel times, which are written inside a loop. It execute a block of code many times. Just like all other programming languages javascript also support looping con...
1 145 292