Android AppBarLayout overlaps listview

前端 未结 2 1583
独厮守ぢ
独厮守ぢ 2020-12-14 03:14

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

相关标签:
2条回答
  • 2020-12-14 03:24

    Simple add

    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    

    to your ListView

    0 讨论(0)
  • 2020-12-14 03:29

    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.

    0 讨论(0)
提交回复
热议问题