Add List Item in ListView Android Example
Sample Code to Add List items Dynamically in ListView Android
Add List Item in ListView Android Example Read More »
Sample Code to Add List items Dynamically in ListView Android
Add List Item in ListView Android Example Read More »
In an Android application using web services or any other operations like downloading data or any process which may take time to get completed, it is always a good social behavior to show a decent progress message. A simple loader image can’t tell much about the process going on. So here we will discuss three methods
Show Progress Bar with Text and Title in Android Read More »
In this Ionic 5/4 tutorial, we’ll learn How to check application version code and name, application package id using the Cordova and Ionic Native plugin. Also, we will discuss how to change the version of the Ionic application for the next production release. In the Ionic application, we may need application-related information like Application Name,
Ionic 5 Check App Version Name, Code and Package Name Using Ionic Native Plugin Read More »
Android location services are very popular these days, they provide the location of a device in the form of latitude and longitude coordinates using with we can track the location up to 10 meters of accuracy. Location services provide many other parameters of a device like speed, the direction of movement, human-readable address using Geocoder
Android Background Geolocation Service Without Any Kill | Part 2 Read More »
Android location services are very popular these days, they provide the location of a device in the form of latitude and longitude coordinates using with we can track the location up to 10 meters of accuracy. Location services provide many other parameters of a device like speed, the direction of movement, human-readable address using Geocoder
Android Background Geolocation Service Without Any Kill | Part 1 Read More »
Last week my friend ordered RDP ThinBook 1130-ECW from Amazon. This is really a good netbook having the weight of 1.2KG and a configuration nice for lite office work. You can see this link and reviews, we will only discuss a problem I faced during installation of MS office 2007 and Open office in this
Resolved! – Error 1935. An error occurred during the installation of assembly component Read More »
Following are steps to Enable Background operations or Service in the background. Customized Android Operating Systems add some strict limitations on background services to boost up battery life and make the device perform better. Many mobile companies use them on customized OS like Xiaomi uses MIUI, Oppo uses ColorOS, Vivo use FuntouchOS and Huawei EMUI.
How to Run Background Service in Vivo Mobiles Read More »
Following are steps to Enable Background operations or Service in the background. Customized Android Operating Systems add some strict limitations on background services to boost up battery life and make the device perform better. Many mobile companies use them on customized OS like Xiaomi uses MIUI, Oppo uses ColorOS, Vivo use FuntouchOS and Huawei EMUI.
How to Run Background Service in Xiaomi Mobiles Read More »
In my previous post, we created a Google Map Static API image using a Get URL. In one of my project, there was a requirement of HTML conversion into PDF document. So I wanted to add that Map Image into that PDF document. I used html2canvas and jsPDF libraries for that. When I was trying to
In one of my application, there was a google map showing the route of a person traveled in a selected day. I was trying to convert that HTML section into downloadable PDF format, which should have that dynamic map as well. So I tried to convert that HTML section into the canvas, but unfortunately as
Convert Google Map into Image with Markers and Paths. Read More »
jsPDF is a nice library to convert HTML content into PDF. We can put the different type of elements in PDF from HTML like an icon, images, text, CSS styles. Here we will discuss an example of jsPDF to convert long HTML page into PDF document which will be generated client-side and download.
Generate Multipage PDF using Single Canvas of HTML Document using jsPDF Read More »
Dataflows in many forms. Someday I was about to transfer MySQL data from one of my servers to my local PC having PHPMyAdmin. On my server PC, I was having WorkBench. A WorkBench is a free tool to manage MySQL queries acts like a relational database management tool. I took a dump of a database
[Resolved] When I faced “#1273 – Unknown collation: ‘utf8mb4_0900_ai_ci'” Error Read More »
Continuing from my previous post has an example of filter pipe usage in Angular application. Here we will upgrade that simple filter app to level next. I have upgraded this application to Angular v9, worked basically on two important methods using which we can pass data between Angular components.
Angular 8|9 Pass Data between Components Example Application Read More »
Listing of items in data is a simple way to show items. If users have to select only a single Item out of it, we need to use radio input fields. here we will discuss the implementation of radio input list in Angular 6. We will develop a simple Angular application which will have the
Angular 12 Dynamic Radio List get Selected Value on Change Read More »
Angular’s best feature is component. We can divide different modules into a number of components. Where each component having its own responsibility to perform. But, sometimes these components may need to communicate with each other and share data having each other’s dependencies. In this post, we will discuss a simple example app which will share
Angular 12 @Input Property Binding Example Read More »