Android 滑动Scrollview标题栏渐变效果(仿京东toolbar)

Scrollview标题栏滑动渐变

仿京东样式(上滑显示下滑渐变消失)

/**
 * @ClassName MyScrollView
 * @Author Rex
 * @Date 2021/1/27 17:38
 */
public class MyScrollView extends ScrollView {
 private TranslucentListener mTranslucentListener;

 public void setTranslucentListener(TranslucentListener translucentListener) {
  this.mTranslucentListener = translucentListener;
 }
 public MyScrollView(Context context) {
  this(context, null);
 }

 public MyScrollView(Context context, AttributeSet attrs) {
  this(context, attrs, 0);
 }

 public MyScrollView(Context context, AttributeSet attrs, int defStyleAttr) {
  this(context, attrs, defStyleAttr, 0);
 }

 public MyScrollView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
  super(context, attrs, defStyleAttr, defStyleRes);
 }

 @Override
 protected void onScrollChanged(int l, int t, int oldl, int oldt) {
  super.onScrollChanged(l, t, oldl, oldt);
  if (mTranslucentListener != null) {
   //ScrollView滑出高度
   int scrollY = getScrollY();
   //屏幕高度
   int screenHeight = getContext().getResources().getDisplayMetrics().heightPixels;
   //有效滑动距离为屏幕2分之一
   // alpha = 滑动高度/(screenHeight/3f)
   if (scrollY <= screenHeight / 2f) {
    Log.d(">>>>>>>>>", "ScrollView划出高度:" + scrollY);
    Log.d(">>>>>>>>>", "屏幕高度:" + screenHeight);
    Log.d(">>>>>>>>>", "渐变值:" + (0 + scrollY / (screenHeight / 4f)));
    // 渐变的过程 1~0
    mTranslucentListener.onTranslucent(0 + scrollY / (screenHeight /4f));
   }
  }
 }
}

Activity 设置

public class ToolbarActivity extends AppCompatActivity implements TranslucentListener {
 private Toolbar mToolBar;
 private MyScrollView mScrollView;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_toobar);
  mToolBar = findViewById(R.id.id_toolbar);
  mScrollView = findViewById(R.id.id_scrollView);
  //初始化渐变为0
  mToolBar.setAlpha(0);
  //设置渐变回调
  mScrollView.setTranslucentListener(this);
 }

 @Override
 public void onTranslucent(float alpha) {
  mToolBar.setAlpha(alpha);
 }
}

渐变回调接口

/**
 * @ClassName TranslucentListener
 * @Author rex
 * @Date 2021/1/27 17:38
 */
public interface TranslucentListener {
 /**
  * 透明度的回调监听
  *
  * @param alpha 0~1 透明度
  */
 public void onTranslucent(float alpha);
}

布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

 <com.rex.rxhttpdemo.MyScrollView
  android:id="@+id/id_scrollView"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:clipChildren="false"
  android:clipToPadding="false"
  >

  <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical">

   <Button
    android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button0" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button1" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button2" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button3" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button4" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button5" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button5" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button5" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button5" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button5" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button5" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button5" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button5" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />

   <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Button" />
  </LinearLayout>
 </com.rex.rxhttpdemo.MyScrollView>

 <androidx.appcompat.widget.Toolbar
  android:id="@+id/id_toolbar"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:background="@color/colorAccent"
  app:title="title"
  />

</RelativeLayout>

下滑显示上滑渐变消失

/**
 * @ClassName MyScrollView
 * @Author Rex
 * @Date 2021/1/27 17:38
 */
public class MyScrollView extends ScrollView {
 private TranslucentListener mTranslucentListener;

 public void setTranslucentListener(TranslucentListener translucentListener) {
  this.mTranslucentListener = translucentListener;
 }
 public MyScrollView(Context context) {
  this(context, null);
 }

 public MyScrollView(Context context, AttributeSet attrs) {
  this(context, attrs, 0);
 }

 public MyScrollView(Context context, AttributeSet attrs, int defStyleAttr) {
  this(context, attrs, defStyleAttr, 0);
 }

 public MyScrollView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
  super(context, attrs, defStyleAttr, defStyleRes);
 }

 @Override
 protected void onScrollChanged(int l, int t, int oldl, int oldt) {
  super.onScrollChanged(l, t, oldl, oldt);
  if (mTranslucentListener != null) {
   //ScrollView滑出高度
   int scrollY = getScrollY();
   //屏幕高度
   int screenHeight = getContext().getResources().getDisplayMetrics().heightPixels;
   //有效滑动距离为屏幕2分之一
   // alpha = 滑动高度/(screenHeight/3f)
   if (scrollY <= screenHeight / 2f) {
    Log.d(">>>>>>>>>", "ScrollView划出高度:" + scrollY);
    Log.d(">>>>>>>>>", "屏幕高度:" + screenHeight);
    Log.d(">>>>>>>>>", "渐变值:" + (1 - scrollY / (screenHeight / 4f)));
    // 渐变的过程 1~0
    mTranslucentListener.onTranslucent(1 - scrollY / (screenHeight /4f));
   }
  }
 }
}

注意: 这里只是更改了 mTranslucentListener.onTranslucent 里的 渐变值

Activty 里 把初始化 mToolBar.setAlpha(0); 去掉

XML

 <com.rex.rxhttpdemo.MyScrollView
  android:id="@+id/id_scrollView"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:clipChildren="false"
  android:clipToPadding="false"
  android:paddingTop="?attr/actionBarSize"
  >
 </com.rex.rxhttpdemo.MyScrollView>

xml 加入 paddingtop .

注意:
android:clipChildren=“false”
android:clipToPadding="false"

这俩个属性 如果不加会有留白

到此这篇关于Android 滑动Scrollview标题栏渐变效果(仿京东toolbar)的文章就介绍到这了,更多相关Android 滑动Scrollview标题栏渐变内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • Android中控制和禁止ScrollView自动滑动到底部的方法

    一.Android 控制ScrollView滚动到底部 在开发中,我们经常需要更新列表,并将列表拉倒最底部,比如发表微博,聊天界面等等, 这里有两种办法,第一种,使用scrollTo(): public static void scrollToBottom(final View scroll, final View inner) { Handler mHandler = new Handler(); mHandler.post(new Runnable() { public void run()

  • Android ScrollView滑动实现仿QQ空间标题栏渐变

    今天来研究的是ScrollView-滚动视图,滚动视图又分横向滚动视图(HorizontalScrollView)和纵向滚动视图(ScrollView),今天主要研究纵向的.相信大家在开发中经常用到,ScrollView的功能已经很强大了,但是仍然满足不了我们脑洞大开的UI设计师们,所以我们要自定义-本篇文章主要讲监听ScrollView的滑动实现仿QQ空间标题栏渐变,先看一下效果图: 好了我们切入主题. 有可能你不知道的那些ScrollView属性  •android:scrollbars 设

  • Android 顶部标题栏随滑动时的渐变隐藏和渐变显示效果

    各位早上好,话不多说,先上效果图: 注意顶部:首页TextView的变化(显示和隐藏)! 首先分析下:UI状态,其是由RecyclerView添加头部组成+RecyclerView 头部添加和RecyclerView分别引用如下:具体的分装数据的过程这里就不在说明,下篇博客会更加深入的写关于 RecyclerView总添加多种不同type类型 compile 'com.bartoszlipinski.recyclerviewheader:library:1.2.1' compile 'com.a

  • Android HorizontalScrollView左右滑动效果

    本文实例为大家分享了Android HorizontalScrollView左右滑动的具体代码,供大家参考,具体内容如下 效果图 一.什么是HorizontalScrollView HorizontalScrollView实际上是一个FrameLayout ,这意味着你只能在它下面放置一个子控件 ,这个子控件可以包含很多数据内容.有可能这个子控件本身就是一个布局控件,可以包含非常多的其他用来展示数据的控件.这个布局控件一般使用的是一个水平布局的LinearLayout.TextView也是一个可

  • 浅谈Android实践之ScrollView中滑动冲突处理解决方案

    1. 前言 在Android开发中,如果是一些简单的布局,都很容易搞定,但是一旦涉及到复杂的页面,特别是为了兼容小屏手机而使用了ScrollView以后,就会出现很多点击事件的冲突,最经典的就是ScrollView中嵌套了ListView.我想大部分刚开始接触Android的同学们都踩到过这个坑,这一篇文章就从最近做的一个项目讲起,然后在过程中提供一些解决冲突的思路. 2. 项目起始 项目有一个页面,涉及到了ViewPager,MapView,ListView,也就是说在一个页面中,会有这三个V

  • Android中ScrollView实现滑动距离监听器的方法

    前言 众所周知ScrollView是我们经常使用的一个UI控件,也许你在使用ScrollView的过程中会发现,当你想监听ScrollView滑动的距离时却没有合适的监听器!当然在API 23中有setOnScrollChangeListener(View.OnScrollChangeListener l)可以使用,但是并不兼容低版本的API.那怎么办呢?只好重写ScrollView来实现对滑动距离的监听了. 话不多说,直接上代码: public class MyScrollView exten

  • Android 滑动Scrollview标题栏渐变效果(仿京东toolbar)

    Scrollview标题栏滑动渐变 仿京东样式(上滑显示下滑渐变消失) /** * @ClassName MyScrollView * @Author Rex * @Date 2021/1/27 17:38 */ public class MyScrollView extends ScrollView { private TranslucentListener mTranslucentListener; public void setTranslucentListener(Translucent

  • Android仿京东顶部搜索框滑动伸缩动画效果

    最近使用京东发现,京东顶部的搜索框有一个新的伸缩效果,根据用户的手势滑动,伸缩搜索框.觉得效果还不错,就看了下其他的应用有没有这种伸缩的效果,发现安居客也使用了类似的一种效果,然后就想着实现这样的一种动画效果. 首先看下第三方的效果图: 京东效果: 安居客效果: 我们最终实现的效果: 仿京东效果: 仿安居客效果: 看完效果图,接下来,我们开始具体实现上面的效果: 布局文件的编写 根据效果我们可以分析我的要做的功能布局效果,首先,整个布局存在一个头部的滑动操作区域,包括标题栏和搜索栏,然后整个布局

  • Android之scrollview滑动使标题栏渐变背景色的实例代码

    之前也是在网上看到这种效果,不过是滚动listview来改变标题栏的颜色,感觉那个应用的比较少,比如我要滚动scrollview来实现呢,那么问题就来了,废话少说,看一下要实现的效果先(这是在项目应用的效果). 直接上源代码: 一.核心类(ObservableScrollView.java) package com.jukopro.titlebarcolor; import android.content.Context; import android.util.AttributeSet; im

  • 基于JS实现仿京东搜索栏随滑动透明度渐变效果

    废话不多说,直接上代码: 1.HTML <header class="module-layer"> <div class="module-layer-content"> <div class="search-box-cover"></div> <p class="layer-return"></p> <h1 class="layer-hea

  • Android ListView滑动改变标题栏背景渐变效果

    先上ListView滑动改变标题栏背景渐变效果图,透明转变成不透明效果: 图1: 图2: 图3: 图4: 我用的是小米Note手机,状态栏高度是55px,后面会提到,这里先做个说明: 下面的内容包含了所有代码和一些测试数据: 代码: 代码很简单,也做了注释,这里就不废话了. 先来布局文件: activity的布局 activity_main_10 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/androi

  • Android仿京东手机端类别页

    京东手机端的类别标签页, 是一个左侧滑动可选择类别, 右侧一个类别明细的列表联动页面. 当用户选择左侧选项, 可在右侧显示更多选项来选择. 实现方式也不少. 最常见的当然是左侧和右侧各一个Fragment, 左侧Fragment放置ListView, 右侧放显示类别明细的Fragment. 如果觉得页面包含的Fragment太多, 左侧直接给一个ListView就可以了.不影响效果. 效果图: 例子中值得注意的三点: 左侧列表点击某个Item可以自动上下滑动,使所点击的item自动移至列表中间

  • Android 仿京东侧滑筛选实例代码

    简单介绍 这个demo写的是仿京东的侧滑筛选页面,点击进入筛选后进入二级筛选,两次侧滑的筛选,还包括ListView+CheckBox滑动冲突,ListView+ GridView显示一行问题解决,接口回调传递数据等 效果图 简单得代码介绍 1.首页侧滑用的是安卓官方V4包中的DrawerLayout <?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.DrawerLa

  • Android仿京东淘宝自动无限循环轮播控件思路详解

    在App的开发中,很多的时候都需要实现类似京东淘宝一样的自动无限轮播的广告栏,所以就自己写了一个,下面是我自定义控件的思路和过程. 一.自定义控件属性 新建自定义控件SliderLayout继承于RelativeLayout,首先要考虑的就是自定义的控件需要扩展那些属性,把这些属性列出来.在这里是要实现类似于京东淘宝的无限轮播广告栏,那么首先想到的就是轮播的时长.轮播指示器的样式等等.我在这里列举了一些并且结合到了代码中. 1.扩展属性 (1)是否开启自动轮播的功能. (2)指示器的图形样式,一

  • Android开发实现仿京东商品搜索选项卡弹窗功能

    本文实例讲述了Android开发实现仿京东商品搜索选项卡弹窗功能.分享给大家供大家参考,具体如下: 一.效果图: 二.思路: (1)首先顶部布局由通过LinearLayout水平按比重平均分配各个item宽度. (2)每个item设置两种状态,点击状态与未点击状态 (3)弹窗由PopupWindow实现 三.布局 (1)item布局 <!-- 优先筛选条件布局 --> <RelativeLayout android:id="@+id/rl_priority_filter&quo

  • Android仿京东分类模块左侧分类条目效果

    本文实例为大家分享了Android仿京东左侧分类条目效果的具体代码,供大家参考,具体内容如下 import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.LinearLayout; import android.widget.ScrollView; import android.widget.TextView; import com.frame.R;

随机推荐