Android | How to Add New Images in Android Studio Project 3.2
Here I will show you how to Very Quickly Add new Images in Android Studio Project, my current version of Android Studio is 3.2
Here I will show you how to Very Quickly Add new Images in Android Studio Project, my current version of Android Studio is 3.2
Image Carousels provides a good front-end user experience to show graphics or images in a small space in an interactive way. But in Angular Application we hardly find great carousels/ image sliders to work with. In this tutorial, we will implement a Great Simple and Easy to Use Angular Image Carousel.
Declaring a model value in the template, then passing it as a reference in method params, does not detect the updated model value; We are going to discuss this issue in detail and also the ways to resolve it with a simple use-case.
Namecheap MySQL doesn’t allow to see or edit stored procedures if they are written using some tool like Workbench. So In case you want to take backup or edit SP’s, you will only have one choice bang your head with customer care and give them technical knowledge about ‘What is stored procedure’ after spending 1 …
Get Backup of Stored Procedures in Namecheap MySQL Database Read More »
In general practice an Android developer use “HttpURLConnection” to use web services and do ant data communication over the internet. Its bit confusing as it gives an error to handle threads and Async tasks. So it makes the process too long cumbersome. For quickly using data communication I prefer Volley library of android. Let’s learn …
A few days back I was working on an offline application having an Image gallery. So the common feature which I needed for a user was to save gallery images in the device and Share those images in Whatsapp or other social media. For that I read many tutorial and forums, after doing some study …
Ionic 3 Share and Save Images from Application’s Assets Folder to Device. Read More »
In this post, we will discuss some quick tips and tricks which can help in writing a robust code using jQuery. These jQuery tips are related to some basic methods using which we can resolve most encountered scenarios and problems.
Just simple quick commands to create an Angular 6 application. You can read more here. In this post, we will only do not that much reading.
Compatible with Angular versions 2,4,5,6,7,8 & 9 Hi Guys, here we will create a list of items with a filter using Angular and Typescript. For filtering list data we will use Pipes. Features: Filter from the list using the input search form field. Use the checkbox to select a game from the populated list. Selected …
Angular 9|8 + Typescript: Create Filter List with Check-boxes to Select from List Read More »
After finishing my app development and testing phase, I tried to find some good documentation for generating production release of my build APK. When I searched on Google, the first link which landed me on Ionic docs explaining to create production release in Ionic 1. As ionic 2/3 is based on Angular 4 latest component-based technology having a powerful feature called AOT (Ahead of Time). AOT in …
Ionic’s Pro service is very powerful in terms of maintenance and testing during app development. It provides many features like we can deploy on real devices for testing on a personal level, or we want any other person we can share our app with others for team testing. You can read more about Ionic Pro …
Hey! when I was building ionic 3 application using native plugins, I faced a strange issue during building my application to generate APK file out of it. Then I noticed that this issue was caused after adding Ionic’s Native “Background Geolocation” . So when I removed this plugin, APK generated successfully. I was in deadly need …
In Ionic Application, we can check battery Status of the mobile device using Cordova and Ionic Native plugins. By using these plugin we can call methods to get battery percentage and we can also check if the device is plugged to a power source.
To make it more convenient, we can add a feature to make calls directly through the application. In this post, we will create an Ionic 3 application, in which we can directly call a number by using Cordova and Ionic Native plugins.
AngularJs provides its own “date” filter to modify Javascript date object to a given format. Following are defined format strings, which can be used to format JS date object.
Using tab index attribute in HTML form fields a user can easily navigate to the next or previous field by merely using the keyboard. But after some presses, Tab index focus caret secretly goes to a new dimension where it becomes impossible to press tab to get back that caret guy in place. ultimately we …
Use TabIndex Form Field Focus in Specific Container Read More »
Disqus is a great discussion add-on available for multi platforms. The installation process is very simple for known CMS and platforms. But my requirement was to add Disqus on a single page app. To get it installed, I landed on this page.
Datatable row recorders feature is used in tables using it’s add-on plugin named (dataTables.rowReorder.js). Using this addon we can drag and drop rows in any order we want in the table. This works only if the table is having some unique serial number or ID. Let’s work on the implementation of datatable with row reorder …
Datatable Row Reorder with Checkboxes and Radio Buttons Read More »
Small and easily customizable percentage progress bar can be help full in some cases when you want to show quick inline graphs or data notations. If the requirement is simple, we can’t proffer heavy libraries. For the same reason, I have written a small jQuery function to draw an animated progress bar. I have added some custom …
Simple Small Progress Percentage Bar Using Custom CSS and jQuery Read More »
In an MVC based application, we switch pages without getting refreshed. For showing data in our current view, we usually load updated JSON objects by hitting API calls and we do so by using $http services of angular js. So in some cases, we don’t want a user of an application to hit API calls …