In this video it shows how to use toggle button in an Android app layout. Implementation of Toggle button 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: programmerworld1990@gmail.com Complete source code and other details: Sreenshots: Excerpt:…
Tag: button
How to check exit confirmation on clicking back button in Android App?
In this video it shows the code to check exit confirmation on clicking back button in Android App. Basically, for this implementation it follows below two steps: 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…
How to check for exit confirmation on pressing Home and Back button in Android App?
It is not possible for Home button click. Android doesn’t allow to override home button click methods. This is to avoid any hijacking of home button click which will avoid user to return to main home page of Android OS. However, for back button this functionality can be implemented. In…
How to implement radio buttons in a radio group in your android app?
In this video it shows the code to implement the Radio Buttons in a Radio Group in your Android App’s Java code in Android Studio. 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: Screenshots:
How to get the Text of the Button pressed/ clicked in your Android App?
In this video it shows the code to fetch the text of button which is clicked in your Android App. It shows how one can type cast the View to Button variable type and fetch the respective text from it in your Android App. I hope you like this video….
How to rotate the picture in ImageView of your Android app?
This video shows the steps to rotate the pictures in the image view of your Android App. It uses the SetRotation property of the ImageView to rotate the image. 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…
How to use onBackPressed method to quickly navigate to other layouts in your Android App?
In this video it shows the steps to use the onBackPressed override method to customize the functionality of back button of the Android phone. In this method one can navigate to the desired layout and page when back button is pressed using setContentView API. I hope you like this video….
How to navigate to Home screen (Layout/view) from your Android App programmatically using intent?
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…
How to get current location of the phone in your iOS App? – Xcode tutorial
This video shows the steps to create your iOS App which can access the current location of your phone. The location coordinates is fetched in locationManager using CLLocation services of the phone. The location coordinates once received is updated in the Map and also updated in the Labels widgets in…
How to get current date and time in your iOS App? -Xcode tutorial
This video shows a simple iOS App development for getting the current date and time from the iPhone’s OS. Then it uses a label to display the date received in the string format in the label. I hope you like this video. For any questions, suggestions or appreciation please contact…