I am writing a simple app to play with ContentProvider, I have a db, a ContentProvider, a main activity, a class that forwards commands to the ContentProvider using ContentR
Simple add
app:layout_behavior="@string/appbar_scrolling_view_behavior"
to your ListView
an alternative way is to use RecyclerView instead of ListView,it will work for sure........
OR
use:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
{
listView.setNestedScrollingEnabled(true);
}
It will obviously only work on Lollipop.