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: apps
How to create your AdMob’s Ad unit to display google Ads on your Android Apps using your adsense and make money?
Steps: – Signup/ Login to your Google AdMob (using your gmail ID): https://apps.admob.com/ – Check all the details and then after accepting Terms and Condition, create the account: – Select the below options as per your preferences and click Continue: – In the Home page, click “Get Started” – Give…
How to solve “Build was configured to prefer settings repositories over project repositories but repository ‘Google’ was added by build file ‘build.gradle'” error in Android App development?
On adding the google or maven repositories for all projects in the gradle file can given error. Adding below: allprojects { repositories { google() mavenCentral() } Gives below error: Solution: Goto Settings.gradle file: And add the lines as below if not added: google() and mavenCentral() repositories added:
How to implement swipe/ drag down refresh functionality using SwipeRefreshLayout in your Android App?
In this video it shows how one can implement the App refresh functionality on swipe down (drag down) by the user. Once the user swipes down anywhere in the layout in the app, the onRefresh method of the layout gets triggered and respective functionality is executed. This app uses the…
How to import Image Asset and use it as display icon of your Android App?
In this video it shows the steps to import an image as an asset in your Android Studio environment of your App. Further it shows how one can use the imported image as the display icon of the App. It modifies both – round icon and normal icon – options…
How to connect and work with Oracle database in matlab using App Designer?
In this video it shows how to develop a Matlab App to connect and work with Oracle Database. It runs a simple query to fetch the data from the database and display it in the TextArea widget in the App. I hope you like this video. For any questions, suggestions…
How to highlight/ show marker at the touch points in your Android App using pop up window?
In this video it shows how to highlight or put some marker (pointers) at the points touched by the user in your Android App. It uses pop up window with complete red background which is inflated at the position the user touches on the view. The points of touch is…
How to create your own snipping tool Android App to take part screenshot using onTouchEvent?
In this video it shows how one can capture the touch points of the user on the phone screen and use it to take snippet of the screen as image. For screenshot it uses part of the code shown in the below page:https://programmerworld.co/android/how-to-take-screenshot-from-your-android-11-app/ However, it modifies the code to show…
How to create your own custom browser Android App? – Android Studio code
In this video it shows simple steps of how to create your own custom browser App in Android. It uses WebView to create the web browser layout and then registers it as web client in your App. It further uses loadUrl method to load the url in the webview making…
How to Resolve/fix session not created Exception i.e. “org.openqa.selenium.SessionNotCreatedException” in Selenium?
This video shows how to fix “Exception in thread “main” org.openqa.selenium.SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version xxCurrent browser version is xxx.x.xxxx.xx with binary path C:\xxxx\xxx\Chrome\Application\chrome.exe” I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email…