Transfer data from old android phone to new Samsung mobile via Smart Switch | Quick & Easy data move

In this tutorial, we will learn, how to transfer all data (contacts, call details, settings, messages, images, photos, google accounts) to your new Samsung mobile with the help of the Smart Switch mobile app developed by Samsung.    We can transfer via Wi-Fi or by connecting phones with USB cables. I found wireless connection and … Read more

fonts.conf file content

 <?xml version=”1.0″?> <!DOCTYPE fontconfig SYSTEM “fonts.dtd”> <!– /etc/fonts/fonts.conf file to configure system font access –> <fontconfig> <!– DO NOT EDIT THIS FILE. IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED. LOCAL CHANGES BELONG IN ‘local.conf’. The intent of this standard configuration file is to be adequate for most environments. If you have a reasonably normal … Read more

Adding Animation in JavaFX Pie Chart

In this tutorial session, we are going to add animation with JavaFX Pie Chart. We will perform an animation on Pie Chart Slices when we click on any one of these. Let’s Begin: Step 1: Please watch Part 1 and Part 2 of this tutorial in which we first learn to create a Pie Chart … Read more

Embedding Swing Components and Handling Events in JavaFX – Part #2

I have explained the embedding of swing control (Jbutton) in the JavaFX application in my first tutorial. If you have not seen that session, please watch that tutorial first and continue from this session for better understanding. We will handle the event that is delivered to an appropriate Swing button and get processed. – Using the … Read more

Embedding Swing Components in JavaFX Applications – Part #1

In this tutorial, we will learn, how to embed Swing components in JavaFX applications. We have to use the ‘SwingNode’ class to use swing components in JavaFX. First, create an instance of SwingNode class. SwingNode swingNode = new SwingNode(); then call the ‘setContent()’ method on either the JavaFX application thread or event dispatch thread (EDT). … Read more