Hide Bottom Toolbar On Scroll

Hide Bottom Toolbar On Scroll

08:31  /  Unknown  /  22 Comments

Google plus uses nice animation to hide bottom toolbar on scroll down to make space to view posts in full screen. So that user can easily view posts on scroll down, and the toolbar quickly returns when user scrolls up. We can achieve this by   CoordinatorLayout . The views can interact with other views inside CoordinatorLayout. Using Layout...

Loading Gear Animation Library

Loading Gear Animation Library

23:16  /  Unknown  /  15 Comments

Title In this post I come up with loading gear animation view as repository, Explaining code is hard so this time i published this as a repository so you can easily import this in your project. We can use this while content loading from internet. If you want change something like color of gear or changing the gear...

Splash Screen Loading Animation

Splash Screen Loading Animation

06:06  /  Unknown  /  7 Comments

A splash screen usually appears while a app or game launching. Splash Screen is not much important for an app. It increases the app launching time. Most of the applications are using splash screen. Gaming app mostly needs the splash screen. But some poor developers implements splash screen as an activity for an app with some delays. Splash...

Custom View Button Widget

Custom View Button Widget

11:06  /  Unknown  /  40 Comments

By using Custom view class We can create custom widget for our Application. Android Studio provides lot of widgets like Button, SearchView, DatePicker etc.. At the time we want some specific designed widgets with logical adjustments means we go for creating custom view widgets. We can create a new view or we also override existing view class. In this tutorial...

Colorful ListView Template

Colorful ListView Template

05:37  /  Unknown  /  8 Comments

Android ListView is the great tool to show items in list because it reduces the cache level of  application. Designing ListView User Interface is the hardest part for some developers. It is better if ListView templates available in on-line. Here I Shared my ListView UI. In my ListView UI I used different color TextView in different list Items. I also...

Walking Man - AnimatedVectorDrawable

Walking Man - AnimatedVectorDrawable

02:32  /  Unknown  /  19 Comments

AnimatedVectorDrawable  Added in Lollipop. But still they not release the compatible library for pre Lollipop devices. And there is no tool to implement AnimatedVectorDrawable. If you use AnimatedVectorDrawable in your app, you need to set minimum API level to 21. So People still using the old xml drawable. But we want to explore this for Future development. First...

ListView with EditText

ListView with EditText

09:00  /  Unknown  /  13 Comments

Placing EditText in ListView giving us some problems like edited text gone, randomly changing the text and focus changing. These all are happening because of the layout reusability. In this post we are compensate the problems. To compensating the edited text gone problem we are using array list to store the edited text from ListView on the time...