Android AppBarLayout overlaps listview

前端 未结 2 1606
独厮守ぢ
独厮守ぢ 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: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.

提交回复
热议问题