In this video it shows steps to implement google Ads in your Android Apps. In this demo it shows how one can put banner Ads to be displayed on the top of the layout. The steps shown are referred from the google developers page on admob. Link for which is…
Tag: device
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…
Solve “enable JavaScript if it is disabled in your browser” error in WebView of your Android App.
This video shows how one can enable JavaScript in WebView (browser) of 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: package com.programmerworld.javascriptinwebview;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;import android.webkit.WebView;import android.webkit.WebViewClient;public class MainActivity extends AppCompatActivity {…
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 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 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 update or edit an existing contact in your phone from your App? – Android Studio code
In this video it shows the implementation of the app to update an existing contact in your phone. It uses ContentProviderOperation and newUpdate method to update any existing contact after searching it based on the display name. I hope you like this video. For any questions, suggestions or appreciation please…
How to add/ save a new contact in phone directly from your App? – Android Studio code
In this video it shows how to save the contacts directly from your Android App programmatically. It uses ContentProviderOperation to structure the input and then insert it in the phone’s content as a new contact. I hope you like this video. For any questions, suggestions or appreciation please contact us…