91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中利用Scrollview實現一個滑動漸變效果

發布時間:2021-01-29 15:53:33 來源:億速云 閱讀:355 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關怎么在Android中利用Scrollview實現一個滑動漸變效果,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

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實現一個滑動漸變效果,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江门市| 黄梅县| 贡山| 平昌县| 屯留县| 金溪县| 耿马| 白水县| 河北区| 淳化县| 甘肃省| 兴海县| 师宗县| 永兴县| 苏尼特右旗| 新营市| 英德市| 宜黄县| 徐汇区| 天峻县| 辽阳市| 南岸区| 朝阳县| 唐河县| 荥经县| 遂昌县| 都江堰市| 垣曲县| 尤溪县| 理塘县| 文水县| 乐安县| 连江县| 宜阳县| 大足县| 潼南县| 北海市| 茌平县| 资源县| 信阳市| 右玉县|