我想重新调整Swipe Refresh Layout的标高。
在App Bar Layout中,我们可以通过调用abl.setElevation(elevation);来获得效果。
Swipe Refresh Layout有没有可能
发布于 2020-04-10 20:40:42
根据SwipeRefreshLayout Documentation page的说法,这是可能的。
它从android.view.View类继承了以下方法:
void setElevation(float arg0)
因此,我认为继承android.view.View类的任何视图或布局都是可能的。
https://stackoverflow.com/questions/61140047
复制相似问题