In this video it shows the use of PUBLISH command to generate a PDF report for your MATLAB code. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code and other details: Sample MATLAB Script for…
Tag: create
How to import image as asset and show it in ImageView (as static image) in your Android App?
In this video it shows the steps to import an image as an asset in Android Studio environment and then display it on an image view in your Android App. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at:…
How to create and save an image file in Download folder from your Android App? – Android 13 | API 33
In this video it shows the steps to create and save an image file in the download folder from your Android App. The App is developed in Android Studio for Android 13 – API 33 version. I hope you like this video. For any questions, suggestions or appreciation please contact…
How to install flutter (SDK) in your Windows OS and use it in Android Studio IDE?
Flutter is a tools to create and develop Apps for different platforms, such as Android, iOS, Windows, etc., using the same code base. Flutter supports many IDEs and editors such as Eclipse, Visual Studio, EMACs and Android Studio. In this page we will see how to install flutter (SDK) for…
How to make your own custom paint (free hand drawing tool) Android App? – complete source code
In this video it shows how one can make his/ her paint or drawing android app. In this it creates a free hand drawing/ sketching App. It uses onTouchEvent to get the X and Y points of user’s touch movement on the screen. Then it draws those lines on the…
How to create your own custom Piano Android App? – using SoundPool API
This video shows the steps to create your own custom Piano Androind App using the SoundPool API in Android Studio. It uses a very simple layout of 7 buttons which it associates to the 7 notes of music from ‘a’ to ‘g’ using the soundID from the SoundPool.load() method. In…
How to add watermark in your PDF file from your Android App?
In this video it shows the steps to add the watermark in your PDF file. It uses PdfStamper object to put the watermark (stamp) as an over content on your PDF pages. In this video it re-uses the create PDF method code from our below page: It further develops the…
How to create and read a PDF file in your Android 11 App?
This video shows the steps to create and read a PDF file in an Android 11 App. It uses iTextpdf library for reading the PDF file and PdfDocument API from android.graphics.pdf to create the PDF file. It creates and reads from the same PDF file but the concept shown in…
How to store image in MS SQL Server database and retrieve it from your Android App?
This page shows steps to create an Android App which connects to MS SQL Server Database. It uses the MSSQL database to store the images in bytes array format. The respective data type in database server is VARBINARY(MAX). It uses a couple of images saved in the emulator phone to…
How to create Microsoft Word Document (.docx) File from your Android App?
This video shows the steps to develop a method to create the Word Document File in your Android App. This uses the apache poi library for the same. It takes the content of the file as an input from the user from the EditText (Plain text) widget. It then creates…