Android application publishing is a process that makes your Android applications available to users. Infect, publishing is the last phase…
Read More

Android application publishing is a process that makes your Android applications available to users. Infect, publishing is the last phase…
Read More
Android provides Built-in applications for phone calls, in some occasions we may need to make a phone call through our…
Read More
In Android, you can use SmsManager API or devices Built-in SMS application to send SMS’s. In this tutorial, we shows…
Read More
Email is messages distributed by electronic means from one system user to one or more recipients via a network. Before…
Read More
Android location APIs make it easy for you to build location-aware applications, without needing to focus on the details of…
Read More
A notification is a message you can display to the user outside of your application’s normal UI. When you tell…
Read More
Android drag/drop framework allows your users to move data from one View to another View in the current layout using…
Read More
1,659 total views, 1 views today
Read More
Implementing own components in pre built-in components with extending subclass with own defined class Android offers a great list of…
Read More
A style resource defines the format and look for a UI. A style can be applied to an individual View…
Read More
Events are a useful way to collect data about a user’s interaction with interactive components of Applications. Like button presses…
Read More
Input controls are the interactive components in your app’s user interface. Android provides a wide variety of controls you can…
Read More
The basic building block for user interface is a View object which is created from the View class and occupies…
Read More
1,605 total views, 2 views today
Read More
// Program sortare prin interclasare. Datele se gasesc in fisierul SIR.DAT #include<stdio.h> #include<conio.h> #define N 100 void Interclasare(int a, int…
Read More
An Android Intent is an abstract description of an operation to be performed. It can be used with startActivity to…
Read More
A thread is defined as the execution path of a program. Each thread defines a unique flow of control. If…
Read More
A Fragment is a piece of an activity which enable more modular activity design. It will not be wrong if…
Read More
C# allows using pointer variables in a function of code block when it is marked by the unsafe modifier. The…
Read More
We discussed that delegates are used to reference any methods that has the same signature as that of the delegate.…
Read More
A content provider component supplies data from one application to others on request. Such requests are handled by the methods…
Read More
Collection classes are specialized classes for data storage and retrieval. These classes provide support for stacks, queues, lists, and hash…
Read More
Broadcast Receivers simply respond to broadcast messages from other applications or from the system itself. These messages are sometime called…
Read More
Events are user actions such as key press, clicks, mouse movements, etc., or some occurrence such as system generated notifications.…
Read More
C# delegates are similar to pointers to functions, in C or C++. A delegate is a reference type variable that…
Read More
A service is a component that runs in the background to perform long-running operations without needing to interact with the…
Read More
An indexer allows an object to be indexed such as an array. When you define an indexer for a class,…
Read More
Properties are named members of classes, structures, and interfaces. Member variables or methods in a class or structures are called…
Read More
Reflection objects are used for obtaining type information at runtime. The classes that give access to the metadata of a…
Read More
An activity represents a single screen with a user interface just like window or frame of Java.Android activity is the…
Read More
There are many more items which you use to build a good Android application. Apart from coding for the application,…
Read More
Let us start actual programming with Android Framework. Before you start writing your first example using Android SDK, you have…
Read More
Application components are the essential building blocks of an Android application. These components are loosely coupled by the application manifest…
Read More
An attribute is a declarative tag that is used to convey information to runtime about the behaviors of various elements…
Read More
Android operating system is a stack of software components which is roughly divided into five sections and four main layers…
Read More
You will be glad to know that you can start your Android application development on either of the following operating…
Read More
What is Android? Android is an open source and Linux-based Operating System for mobile devices such as smartphones and tablet…
Read More
A file is a collection of data stored in a disk with a specific name and a directory path. When…
Read More
An exception is a problem that arises during the execution of a program. A C# exception is a response to…
Read More
A regular expression is a pattern that could be matched against an input text. The .Net framework provides a regular…
Read More
The preprocessor directives give instruction to the compiler to preprocess the information before actual compilation starts. All preprocessor directives begin…
Read More
A namespace is designed for providing a way to keep one set of names separate from another. The class names…
Read More
An interface is defined as a syntactical contract that all the classes inheriting the interface should follow. The interface defines…
Read More
You can redefine or overload most of the built-in operators available in C#. Thus a programmer can use operators with…
Read More
The word polymorphism means having many forms. In object-oriented programming paradigm, polymorphism is often expressed as ‘one interface, multiple functions’.…
Read More
One of the most important concepts in object-oriented programming is inheritance. Inheritance allows us to define a class in terms…
Read More
When you define a class, you define a blueprint for a data type. This does not actually define any data,…
Read More
An enumeration is a set of named integer constants. An enumerated type is declared using the enum keyword. C# enumerations…
Read More
In C#, a structure is a value type data type. It helps you to make a single variable hold related…
Read More
In C#, you can use strings as array of characters, However, more common practice is to use the string keyword…
Read More