Skip to main content

Posts

Showing posts from November, 2024

How to Programmatically Check if Developer Options are enabled or not in Android

 Hello forks, hope you are doing well. In this tutorial we will learn how to programmatically check if developer options in device is on or off. Before going to coding part let's discuss brief about what are developer options and what does it mean. Developer options is a hidden menu in the Android Settings app that gives users access to advanced features and tools:  Customize your device : You can adjust animation scales, limit background processes, and more.  Optimize performance : You can improve app performance, optimize battery life, and more.  Test and debug apps : You can enable USB debugging, capture bug reports, and more.  Take more control of your device : You can access settings that are usually hidden from regular users, such as hardware profiling and simulated location settings.  So it basically available in every android device and generally used by developers for testing and debugging their apps. now let's come to coding part , it's very easy ...

How to implement drag and drop feature in android with click reference in Android

 Hi guys ,hope you are doing well. In this tutorial we will learn how to implement drag and drop feature in our android apllication with respect to onclick of particular view. You may utilize the Android drag/drop framework to enable your users to move data with a graphical drag and drop action.  Sample Use Cases for Drag & Drop - Something that helps you drag a pointer on live data to get the color of the object or the thing - In your mobile device’s launcher screen, where every program displays, we may effortlessly drag and drop app icons from one location to another. so without taking much time let's move to the coding part and understand step by step process. Step 1: Create activity_drag_and_drop.xml into layout folder <?xml version= "1.0" encoding= "utf-8" ?> < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:app = "http://schemas.android.com/apk/res-auto" xmlns:tools = "http...