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

溫馨提示×

溫馨提示×

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

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

使用HorizontalScrollView怎么實現滑動頁面時的縮放效果

發布時間:2021-05-27 17:22:08 來源:億速云 閱讀:233 作者:Leah 欄目:移動開發

本篇文章為大家展示了使用HorizontalScrollView怎么實現滑動頁面時的縮放效果,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

activity_main.xml :

<com.crazy.reduce.ReduceSideslip xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/reduce_lay"
 android:layout_width="wrap_content"
 android:layout_height="match_parent"
 android:background="@drawable/bg"
 android:scrollbars="none"
 tools:context="com.crazy.reduce.MainActivity" >
 
 <LinearLayout
  android:layout_width="wrap_content"
  android:layout_height="match_parent"
  android:orientation="horizontal" >
 
  <include layout="@layout/item" />
 
  <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:background="@drawable/bg_01" >
 
   <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="toggleMenu"
    android:text="點擊" />
  </LinearLayout>
 </LinearLayout>
 
</com.crazy.reduce.ReduceSideslip>

在 item.xml 布局文件的右邊有個 button 按鈕,這些都在 HorizontalScrollView 的子組件當中。而 item.xml 究竟是怎樣的布局也都不會影響到整個的滑動。

item.xml :

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent" >
 
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
  android:orientation="vertical" >
 
  <Button
   android:id="@+id/bt_b"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_marginTop="50dp"
   android:text="一個不同的按鈕" />
 
  <ImageView
   android:id="@+id/img"
   android:layout_width="wrap_content"
   android:layout_height="match_parent"
   android:scaleType="centerCrop"
   android:src="@drawable/bg_03" />
 </LinearLayout>
 
 
</RelativeLayout>

MainActivity.java :

package com.crazy.reduce;
 
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
 
public class MainActivity extends Activity {
 
 private ReduceSideslip rs;
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 
 rs = (ReduceSideslip)findViewById(R.id.reduce_lay);
 }
 
 public void toggleMenu(View v) {
 rs.reduce();
 }
}

自定義的 ReduceSideslip.java :   需要 nineoldandroids-2.4.0.jar 包,其下載地址

package com.crazy.reduce;
 
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.HorizontalScrollView;
import android.widget.LinearLayout;
 
import com.nineoldandroids.view.ViewHelper;
 
public class ReduceSideslip extends HorizontalScrollView {
 
 private int mScreenWidth;  // 屏幕寬度
 private int mMnuRightPadding = 300;
 
 private int mMenuWidth; // 視圖寬度(左邊的視圖)
 private int mHalfMenuWidth;
 
 private boolean isOpen; // 標記菜單是否打開
 private boolean once;  // 是否已經初始化回收菜單
 
 private ViewGroup mMenu; // 左邊的視圖
 private ViewGroup mContent; // 右邊的視圖
 
 public ReduceSideslip(Context context, AttributeSet attrs) {
  super(context, attrs);
  mScreenWidth = context.getResources().getDisplayMetrics().widthPixels;
 }
 
 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
 
  if (!once) {
   // 要與布局文件當中的一致
   LinearLayout temp = (LinearLayout)getChildAt(0);
   mMenu = (ViewGroup)temp.getChildAt(0);
   mContent = (ViewGroup)temp.getChildAt(1);
 
   mMenuWidth = mScreenWidth - mMnuRightPadding;
   mHalfMenuWidth = mMenuWidth/2;
   mMenu.getLayoutParams().width = mMenuWidth;
   mContent.getLayoutParams().width = mScreenWidth;
  }
  super.onMeasure(widthMeasureSpec, heightMeasureSpec);
 }
 
 // 在視圖計算完自身及子視圖的寬高后,重新排版
 @Override
 protected void onLayout(boolean changed, int l, int t, int r, int b) {
  super.onLayout(changed, l, t, r, b);
 
  if (changed) {
   // 隱藏菜單
   this.scrollTo(mMenuWidth, 0);
   once = true;
  }
 }
 
 public void reduce(){
  if (isOpen) {
   closeMenu();
  } else {
   openMenu();
  }
 }
 
 private void openMenu() {
  if (isOpen) {
   return;
  }
  // 和 scrollTo() 相似,但是要緩和些,
  // 不像 scrollTo() 直接移動過去
  this.smoothScrollTo(0, 0);
  isOpen = true;
 }
 
 private void closeMenu() {
  if (isOpen) {
   this.smoothScrollTo(mMenuWidth, 0);
   isOpen = false;
  }
 }
 
 @Override
 public boolean onTouchEvent(MotionEvent ev) {
  switch (ev.getAction()){
   case MotionEvent.ACTION_UP:  // 松開手
    int scrollX = getScrollX();   // 水平滑動的距離
    if (scrollX > mHalfMenuWidth) {
     this.smoothScrollTo(mMenuWidth, 0);
     isOpen = false;
    } else {
     this.smoothScrollTo(0, 0);
     isOpen = true;
    }
    return true;
  }
  return super.onTouchEvent(ev);
 }
 
 @Override
 protected void onScrollChanged(int l, int t, int oldl, int oldt) {
  super.onScrollChanged(l, t, oldl, oldt);
 
  // 左右視圖切換時的漸變范圍 (注意是 l 不是1(一))
  float scale = l*1.0f/mMenuWidth;  // 范圍值 (0, 1)
  float leftScale = 1- 0.3f*scale;  // 范圍值(0.7, 1)
  float rightScale = 0.8f + 0.2f*scale; // 范圍值 (0.8, 1)
 
  ViewHelper.setScaleX(mMenu, leftScale);
  ViewHelper.setScaleY(mMenu, leftScale);
 
  // 往右滑動時,左邊的視圖逐漸變亮
  ViewHelper.setAlpha(mMenu, 0.6f + 0.4f * (1 - scale)); // (0.6, 1)
  // 往左滑動時,左邊的視圖不用移除屏幕左邊界(可以不要) 
  ViewHelper.setTranslationX(mMenu, mMenuWidth * scale * 0.7f);
 
  ViewHelper.setScaleX(mContent, rightScale);
  ViewHelper.setScaleY(mContent, rightScale);
 }
}

上述內容就是使用HorizontalScrollView怎么實現滑動頁面時的縮放效果,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

麻阳| 平定县| 红桥区| 宁化县| 米脂县| 南宫市| 五台县| 延边| 海南省| 阳信县| 蒙阴县| 吉林市| 黄陵县| 桃源县| 东丽区| 浦北县| 鄂托克旗| 广州市| 延川县| 武威市| 潞城市| 山阴县| 兴城市| 嘉定区| 镇平县| 临安市| 通州市| 定远县| 紫云| 沙湾县| 楚雄市| 申扎县| 炉霍县| 贵州省| 南昌市| 延吉市| 松桃| 麻城市| 瑞金市| 仲巴县| 广宁县|