Sending Message to WhatsApp Number in Android Android by Rajesh Kumar Sahanee - June 7, 20200 Hello Friends, Today we are going see an example of sending message to whatsapp number in android. WhatsApp Messenger, or simply WhatsApp, is an American freeware, cross-platform messaging and Voice over IP service owned by Facebook, Inc. Actually I have added this feature in one of my office's android project
SearchView Suggestions over Network in Android Android Php by Rajesh Kumar Sahanee - May 24, 20200 Hello Friends, Today we'll see an example of SearchView Suggestions over Network in Android. And there will be two part of this code one will be server side code in PHP and another one Android app code. Actually I was working on an android app in which I was required
ViewHolder Pattern with BaseAdapter in Android Android by Rajesh Kumar Sahanee - May 17, 2020May 17, 20200 Hello Friends, today we are going see an example of ViewHolder Pattern with BaseAdapter in Android. I am sharing this code example because few weeks ago I was working on a project and after completing code, I have analyzed my code using "Inspect Code..." feature of Android Studio which is
Custom Toolbar with SearchView in Android Android by Rajesh Kumar Sahanee - April 4, 2020April 13, 20200 Hello Friends, Today we are going to see another example of SearchView which is Custom Toolbar with SearchView in Android. SearchView in Toolbar was the first example of SearchView. The same type of toolbar I had developed in one of my project and It took more than enough time to
Create Remote in Android using ConsumerIrManager Android by Rajesh Kumar Sahanee - February 28, 2020April 4, 20200 Hello friends, today we are going to learn how to create remote in android using ConsumerIrManager. ConsumerIrManager class operates consumer infrared on the device and we'll use two methods of ConsumerIrManager class hasIrEmitter method to check whether device has infrared emitter or not and transmit method to transmit single/pattern. Actually
Adding Animations to Controls or Layouts in Android Android by Rajesh Kumar Sahanee - November 9, 2019November 9, 20190 Hello Friends, Today we are going to learn adding animations to controls or Layouts in Android. Recently I was working on an app in which I was required to add animation on a control's visiblility "gone" and "visible". So I used alpha method to achieve fade in and fade out
Android AlarmManager to Start Background Service Periodically Android by Rajesh Kumar Sahanee - October 26, 2019October 26, 20190 Hello Friends, Today I am going to share how to use Android AlarmManager to Start Background Service Periodically. The Alarm Manager holds a CPU wake lock which guarantees that the phone will not sleep until you have finished handling the broadcast. It can also be used to perform some repetitive
WebView Based Android App with ProgressBar and SwipeRefreshLayout Android by Rajesh Kumar Sahanee - July 22, 2019July 22, 20190 Hello Friends, Today we are going to see another example of WebView based App, but this time it will be WebView Based Android App with ProgressBar and SwipeRefreshLayout. Here ProgressBar helps us to see progress of page loading while SwipeRefreshLayout is used to refresh the same page with just a
ListView inside Navigation Drawer in Android Android by Rajesh Kumar Sahanee - July 18, 2019July 18, 20190 Hello Friends, Today I am going to share a code to place ListView inside Navigation Drawer in Android. A list view is an adapter view that does not know the details, such as type and contents, of the views it contains. Instead list view requests views on demand from a
Open Navigation Drawer Programmatically in Android Android by Rajesh Kumar Sahanee - July 11, 2019April 5, 20200 Hello Friends, Today I am going to share a code to Open Navigation Drawer Programmatically in Android. And to do so you just need DrawerLayout's reference and then you can call openDrawer(int) function on it to open drawer. You can also close Drawer programmatically using closeDrawer(int) function but you don't