SwipeRefreshLayout behind ActionBar

前端 未结 6 1635
情深已故
情深已故 2020-12-13 13:10

When using a SwipeRefreshLayout in combination with a overlay mode ActionBar, the loading animation will be displayed behind the actionbar, making it almost invisible.

6条回答
  •  不思量自难忘°
    2020-12-13 13:37

    the answer of Vijay Rajput works for me, but the problem was only on Kitkat or hight so I included:

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { swipeLayout.setProgressViewOffset(false, 0,100); }

提交回复
热议问题