Posts

which is best way to implement Android NavigationDrawer Activity in android studio.

Image
                             Complete idea and concept with explaination of Custom Navigation Drawer each and every step with below diargram.   To Implement Android NavigationDrawer Activity we need this below component.     1)Drawer Layout     2) Toolbar     3) Navigation Resource File     4) Layout Resource File     5) menu   Concept : 1) Navigation Drawer :  This is a panel that  display app's Navigation option from the left  edge of the screen.It is a uniform way to access different pages and information inside our app.                                              2) Drawer Layout :  Android  Navigation  Drawer  is a sliding left menu that is used to  display the important links in the...

How to implement Android Splash Activity in easy way.

Image
Step By Step Implementation of Android Splash Screen. 1) first we need to create new project in android studio. 2) After Open Mainactivity.xml file.and add imageview in activity. 3) After create new activity (ex.login). 4) Add code in mainactivity,     new Handler().postDelayed( new Runnable() { @Override public void run() { // This method will be executed once the timer is over Intent i = new Intent(MainActivity. this ,login. class ); startActivity(i); finish(); } }, 5000 ); 5)Run the project. 6)your splash screen are successfully added in Your app. ======================================================================== Here,  postDelayed() :  This function delays the process for a specified time. Handler() :  postDelayed()   used with a handler which allows you to send and process Message and Runnable objects associated with a Thread’s MessageQueue. Each handler instance is a single thread. After pro...

Spritiual Thought

Image
   “You can do anything if you set goals.                 You just have to push yourself. ” "You Are the Artist of your Own life, Don't hand the Paintbrush to anyone else."     "If You have Dedication,  you will 💯 get success ".      Because  DREAMS & DEDICATION  are powerful Combination to achieve SUCCESS .