bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

怎么在Android中使用ScrollView實現一個下拉彈回動畫效果

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

成都創新互聯公司是一家專注于成都網站設計、成都做網站、外貿網站建設與策劃設計,桓仁網站建設哪家好?成都創新互聯公司做網站,專注于網站建設十余年,網設計領域的專業建站公司;建站業務涵蓋:桓仁等地區?;溉首鼍W站價格咨詢:18980820575

Android是什么

Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。

一.自定義View的設計代碼

package com.lwz.mathbox.weight;

import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.animation.TranslateAnimation;
import android.widget.ScrollView;

/**
 * 實現了可以有下拉彈回的ScrollView的自定義View
 */
public class SpringScrollView extends ScrollView {

  private View inner;// 孩子

  private float y;// 坐標

  private Rect normal = new Rect();// 矩形空白

  public SpringScrollView(Context context, AttributeSet attrs) {
    super(context, attrs);
  }

  /***
   * 根據 XML 生成視圖工作完成.該函數在生成視圖的最后調用,在所有子視圖添加完之后. 即使子類覆蓋了 onFinishInflate
   * 方法,也應該調用父類的方法,使該方法得以執行.
   */
  @Override
  protected void onFinishInflate() {
    if (getChildCount() > 0) {
      inner = getChildAt(0);// 獲取其孩子
    }
  }

  @Override
  public boolean onTouchEvent(MotionEvent ev) {
    if (inner != null) {
      commOnTouchEvent(ev);
    }
    return super.onTouchEvent(ev);
  }

  /***
   * 觸摸事件
   *
   * @param ev
   */
  public void commOnTouchEvent(MotionEvent ev) {
    int action = ev.getAction();
    switch (action) {
      case MotionEvent.ACTION_DOWN:
        y = ev.getY();// 獲取點擊y坐標
        break;
      case MotionEvent.ACTION_UP:
        if (isNeedAnimation()) {
          animation();
        }
        break;
      case MotionEvent.ACTION_MOVE:
        final float preY = y;
        float nowY = ev.getY();
        int deltaY = (int) (preY - nowY);// 獲取滑動距離

        y = nowY;
        // 當滾動到最上或者最下時就不會再滾動,這時移動布局
        if (isNeedMove()) {
          if (normal.isEmpty()) {
            // 填充矩形,目的:就是告訴this:我現在已經有了,你松開的時候記得要執行回歸動畫.
            normal.set(inner.getLeft(), inner.getTop(),
                inner.getRight(), inner.getBottom());
          }
          // 移動布局
          inner.layout(inner.getLeft(), inner.getTop() - deltaY / 2,
              inner.getRight(), inner.getBottom() - deltaY / 2);
        }
        break;

      default:
        break;
    }
  }

  /***
   * 開啟動畫移動
   */
  public void animation() {
    // 開啟移動動畫
    TranslateAnimation ta = new TranslateAnimation(0, 0, inner.getTop(),
        normal.top);
    ta.setDuration(300);
    inner.startAnimation(ta);
    // 設置回到正常的布局位置
    inner.layout(normal.left, normal.top, normal.right, normal.bottom);
    normal.setEmpty();// 清空矩形
  }

  /***
   * 是否需要開啟動畫
   * <p>
   * 如果矩形不為空,返回true,否則返回false.
   *
   * @return
   */
  public boolean isNeedAnimation() {
    return !normal.isEmpty();
  }

  /***
   * 是否需要移動布局 inner.getMeasuredHeight():獲取的是控件的高度
   * getHeight():獲取的是當前控件在屏幕中顯示的高度
   *
   * @return
   */
  public boolean isNeedMove() {
    int offset = inner.getMeasuredHeight() - getHeight();
    int scrollY = getScrollY();
    // 0是頂部,后面那個是底部
    if (scrollY == 0 || scrollY == offset) {
      return true;
    }
    return false;
  }

}

二.簡單調用示例

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">

  //包名+類型
  <com.lwz.mathbox.weight.SpringScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

      <EditText
        android:id="@+id/et_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@null"
        android:gravity="top"
        android:hint="輸入文字"
        android:minLines="4"
        android:singleLine="false"
        android:textSize="14sp" />

      <TextView
        android:id="@+id/tv_size"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginRight="10dp"
        android:gravity="right"
        android:text="0/255" />

      </LinearLayout>
  </com.lwz.mathbox.weight.SpringScrollView>
</LinearLayout>

以上就是怎么在Android中使用ScrollView實現一個下拉彈回動畫效果,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注創新互聯行業資訊頻道。

網頁題目:怎么在Android中使用ScrollView實現一個下拉彈回動畫效果
文章轉載:http://vcdvsql.cn/article38/iipdpp.html

成都網站建設公司_創新互聯,為您提供Google、網站建設、關鍵詞優化網站導航、品牌網站建設、ChatGPT

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都網站建設