In this video it shows how one can navigate directly to the home screen layout from your Android App programmatically. 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: package com.programmerworld.homescreenapp;import android.content.Intent;import…
Tag: Appp
How to take screenshot from your Android 11 App?
This video shows the steps to develop an Android 11 (API 30) App to take screenshot of your phone. It uses a very simple concept of going to the rootView from any view to get the complete screenshot. It shows 2 approaches: App’s button view and the window view 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…