怎么获取android tablayout 到屏幕顶部的距离
时间: 2024-05-05 11:22:37 浏览: 46
Android ScrollView向上滑动控件顶部悬浮效果实现
5星 · 资源好评率100%
要获取Android TabLayout到屏幕顶部的距离,可以使用以下代码:
```java
int[] location = new int[2];
tabLayout.getLocationOnScreen(location);
int distance = location[1];
```
这将返回TabLayout与屏幕顶部的距离(以像素为单位)。要获取与父视图的距离,可以使用以下代码:
```java
int[] location = new int[2];
tabLayout.getLocationInWindow(location);
int distance = location[1];
```
这将返回TabLayout与其父视图的距离(以像素为单位)。
阅读全文