符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
今天就跟大家聊聊有关Android开发中如何将滑动组件固定在顶部,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
创新互联服务项目包括路桥网站建设、路桥网站制作、路桥网页制作以及路桥网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,路桥网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到路桥省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!效果是如下:
场景:有些时候是内容中间的组件当滑动至顶部的时候固定显示在顶部。
实现的思路:
1.目标组件(button)有两套,放在顶部和内容中间;
2.当内容中间的组件滑动至顶部栏位置时控制显示/隐藏顶部和中间的组件(涉及到组件获取在屏幕的位置知识点);
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); } } }