今天就跟大家聊聊有关Android开发中如何将滑动组件固定在顶部,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
效果是如下:
场景:有些时候是内容中间的组件当滑动至顶部的时候固定显示在顶部。
实现的思路:
目标组件(button)有两套,放在顶部和内容中间;
当内容中间的组件滑动至顶部栏位置时控制显示/隐藏顶部和中间的组件(涉及到组件获取在屏幕的位置知识点);
activity代码:
public class MainActivity extends AppCompatActivity implements ObservableScrollView.ScrollViewListener { private ObservableScrollView scrollView; private Button topBtn1, topBtn2, middleBtn1, middleBtn2; private View topPanel, middlePanel; private int topHeight; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initViews(); initListeners(); } @Override public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); Rect frame = new Rect(); getWindow().getDecorView().getWindowVisibleDisplayFrame(frame); int statusBarHeight = frame.top;//状态栏高度 int titleBarHeight = getWindow().findViewById(Window.ID_ANDROID_CONTENT).getTop();//标题栏高度 topHeight = titleBarHeight + statusBarHeight; } private void initViews() { scrollView = (ObservableScrollView) findViewById(R.id.scrollView); topPanel = findViewById(R.id.topPanel); topBtn1 = (Button) topPanel.findViewById(R.id.button1); topBtn2 = (Button) topPanel.findViewById(R.id.button2); middlePanel = findViewById(R.id.middlePanel); middleBtn1 = (Button) middlePanel.findViewById(R.id.button1); middleBtn2 = (Button) middlePanel.findViewById(R.id.button2); } private void initListeners() { topBtn1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { middleBtn1.setBackgroundColor(Color.WHITE); topBtn1.setBackgroundColor(Color.WHITE); } }); middleBtn1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { middleBtn1.setBackgroundColor(Color.BLUE); topBtn1.setBackgroundColor(Color.BLUE); } }); scrollView.setScrollViewListener(this); } @Override public void onScrollChanged(ObservableScrollView scrollView, int x, int y, int oldx, int oldy) { int[] location = new int[2]; middleBtn1.getLocationOnScreen(location); int locationY = location[1]; Log.e("locationY", locationY + " " + "topHeight的值是:" + topHeight); if (locationY <= topHeight && (topPanel.getVisibility() == View.GONE || topPanel.getVisibility() == View.INVISIBLE)) { topPanel.setVisibility(View.VISIBLE); } if (locationY > topHeight && topPanel.getVisibility() == View.VISIBLE) { topPanel.setVisibility(View.GONE); } } }
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1142
183.71 KB下载数642
644.84 KB下载数2755
相关文章
发现更多好内容猜你喜欢
AI推送时光机Android开发中如何将滑动组件固定在顶部
后端开发2023-05-31
Android滑动组件悬浮固定在顶部效果
后端开发2022-06-06
Android如何模仿实现微博详情页滑动固定顶部栏的效果
后端开发2023-05-30
咦!没有更多了?去看看其它编程学习网 内容吧