Android自定义View(六)商品详情页GoodsDetailLayout

ezgif-5-1d05be3b91.gif

安卓中的商品详情页一般都是由上下二个全屏的可以滚动的view组成,当上面的试图滚到底部时,才可以拖到下面的试图,我们可以用一个Viewgroup来放置一个Scrollview和一个WebView,再对上下View进行判断是否可以继续上滑或下滑

1.定义一个GoodsDetailLayout继承Viewgroup,在构造初始化参数

2.在onInterceptTouchEvent方法中进行事件的判断,当View没有滑动到底部或顶部时,我们不对事件进行拦截,让View响应自己的滑动,否则就对事件进行拦截,根据滑动的参数自己处理事件

3.怎么知道View是否滑动到了底部或顶部呢,ViewCompat类中有一个方法

/**
* Check if this view can be scrolled vertically in a certain direction.
*
* @param view The View against which to invoke the method.
* @param direction Negative to check scrolling up, positive to check scrolling down.
* @return true if this view can be scrolled in the specified direction, false otherwise.
*
* @deprecated Use {@link View#canScrollVertically(int)} directly.
*/
@Deprecated
public static boolean canScrollVertically(View view, int direction) {
return view.canScrollVertically(direction);
}

第一个参数表示用于要判断的view,第二个参数direction,大于0时表示是否可以上滑,小于0表示是否可以下滑

4.onInterceptTouchEvent方法是这里面最为关键的一步,如果当前的屏幕是上面的View且不可以上滑时,就代表上面的View滑动到了底部,就自己来处理事件.或者当前屏幕的布局是下面的View且不可以下滑就代表下面的布局已经滑动到了顶部,就拦截事件让自己处理.

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        int y = (int) ev.getY();
        switch (ev.getAction()) {
            case MotionEvent.ACTION_DOWN:
                mDownY = y;
                break;
            case MotionEvent.ACTION_MOVE:
                mMoveY = y;
                mLastMoveY = mMoveY;
                //第二个参数,当direction>0时,判断是否可以上滑
                boolean b1 = ViewCompat.canScrollVertically(getChildAt(0), 1);
                //第二个参数,当direction<0时,判断是否可以下滑
                boolean b4 = ViewCompat.canScrollVertically(getChildAt(1), -1);
//
//                if ((Math.abs(mMoveY - mDownY)) > mTouchSlop) {
//                    return true;
//                }
                //dy>0表示下滑
                int dy = mMoveY - mDownY;
                if (mCurrentIndex == UP && !b1 && dy < 0) {
                    return true;
                }

                if (mCurrentIndex == DOWN && !b4 && dy > 0) {
                    return true;
                }

        }
        return false;

    }

5.然后在Ontouchevent方法中对事件进行处理,规定可以滑动的范围,抬起手时根据getScrollY的值进行判断属于上面还是下面

完整代码:

public class GoodsDetailLayout extends ViewGroup {
    //滑动敏感值
    private int mTouchSlop;
    private int mDownY;
    private int mMoveY;
    private int mLastMoveY;
    private Scroller mScroller;
    private int mCurrentIndex = UP;
    public static final int UP = 1;
    public static final int DOWN = 2;


    public GoodsDetailLayout(Context context) {
        this(context, null);
    }

    public GoodsDetailLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
        ViewConfiguration viewConfiguration = ViewConfiguration.get(context);
        mTouchSlop = ViewConfigurationCompat.getScaledPagingTouchSlop(viewConfiguration);
        mScroller = new Scroller(context);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        measureChild(getChildAt(0), widthMeasureSpec, heightMeasureSpec);
        measureChild(getChildAt(1), widthMeasureSpec, heightMeasureSpec);
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        View child1 = getChildAt(0);
        View child2 = getChildAt(1);

        child1.layout(0, 0, child1.getMeasuredWidth(), child1.getMeasuredHeight());
        child2.layout(0, child1.getMeasuredHeight(), child1.getMeasuredWidth(), child1.getMeasuredHeight() +
                child2.getMeasuredHeight());
    }


    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        int y = (int) ev.getY();
        switch (ev.getAction()) {
            case MotionEvent.ACTION_DOWN:
                mDownY = y;
                break;
            case MotionEvent.ACTION_MOVE:
                mMoveY = y;
                mLastMoveY = mMoveY;
                //第二个参数,当direction>0时,判断是否可以上滑
                boolean b1 = ViewCompat.canScrollVertically(getChildAt(0), 1);
                //第二个参数,当direction<0时,判断是否可以下滑
                boolean b4 = ViewCompat.canScrollVertically(getChildAt(1), -1);
//
//                if ((Math.abs(mMoveY - mDownY)) > mTouchSlop) {
//                    return true;
//                }
                //dy>0表示下滑
                int dy = mMoveY - mDownY;
                if (mCurrentIndex == UP && !b1 && dy < 0) {
                    return true;
                }

                if (mCurrentIndex == DOWN && !b4 && dy > 0) {
                    return true;
                }

        }
        return false;

    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        int height =0;
        switch (event.getAction()) {
            case MotionEvent.ACTION_MOVE:
                int y = (int) event.getY();
                mMoveY = y;

                scrollBy(0, mLastMoveY - mMoveY);
                if (getScrollY() <= 0) {
                    scrollTo(0, 0);
                }
                if (getScrollY() >= getHeight()) {
                    scrollTo(0, getHeight());
                }
                height = mCurrentIndex == UP ? getHeight() / 3 : getHeight() - getHeight() / 3;
                if (getScrollY() < height) {
                    if(mOnViewChangeListener!=null )
                        mOnViewChangeListener.onDownAnim(mCurrentIndex);
                }
                if (getScrollY() >= height) {
                    if(mOnViewChangeListener!=null )
                        mOnViewChangeListener.onPullAnim(mCurrentIndex);
                }
                mLastMoveY = mMoveY;
                break;
            case MotionEvent.ACTION_UP:

                int dy = 0;
                height = mCurrentIndex == UP ? getHeight() / 3 : getHeight() - getHeight() / 3;

                if (getScrollY() < height) {
                    dy = 0 - getScrollY();
                    mCurrentIndex = UP;
                    if(mOnViewChangeListener!=null)
                        mOnViewChangeListener.onUp();
                }
                if (getScrollY() >= height) {
                    dy = getHeight() - getScrollY();
                    mCurrentIndex = DOWN;

                }

                mScroller.startScroll(0, getScrollY(), 0, dy);
                invalidate();
                break;
        }
        return super.onTouchEvent(event);
    }

    @Override
    public void computeScroll() {
        if (mScroller.computeScrollOffset()) {
            scrollTo(mScroller.getCurrX(), mScroller.getCurrY());
            invalidate();
        }
    }

    public interface onViewChangeListener {
        void onPullAnim(int index);

        void onDownAnim(int index);

        void onUp();

    }

    private onViewChangeListener mOnViewChangeListener;

    public void setOnViewChangeListener(onViewChangeListener onViewChangeListener) {
        mOnViewChangeListener = onViewChangeListener;
    }
}

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<com.chinamall21.mobile.animstudy.view.GoodsDetailLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/goods_detail"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/colorPrimary">

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

            <Button

                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:text="上面条目1"/>

            <Button
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:text="上面条目2"/>

            <Button
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:text="上面条目3"/>

            <Button
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:text="上面条目4"/>

            <Button
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:text="上面条目5"/>

            <Button
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:text="上面条目6"/>

            <Button
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:text="上面条目7"/>

            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal"
                android:layout_margin="10dp">

                <ImageView
                    android:id="@+id/iv"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/pull"/>

                <TextView
                    android:id="@+id/tv"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:layout_marginLeft="5dp"
                    android:layout_toRightOf="@+id/iv"
                    android:text="上拉加载更多"/>

            </RelativeLayout>

        </LinearLayout>

    </ScrollView>

    <!--下面-->
    <WebView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/webview">

    </WebView>
    

</com.chinamall21.mobile.animstudy.view.GoodsDetailLayout>


Activity里面:

public class GoodsDetailActivity extends AppCompatActivity {

    private ImageView mImageView;

    private TextView mTextView;

    private GoodsDetailLayout mGoodsDetailLayout;


    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_goods_detail);
        mGoodsDetailLayout = findViewById(R.id.goods_detail);
        mImageView =findViewById(R.id.iv);
        mTextView =findViewById(R.id.tv);
        WebView webView = findViewById(R.id.webview);
        webView.loadUrl("//www.greatytc.com/p/346f37b7191f");
        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
        webView.getSettings().setSupportMultipleWindows(true);
        webView.getSettings().setBuiltInZoomControls(true);
        webView.setWebViewClient(new WebViewClient());
        webView.setWebChromeClient(new WebChromeClient());

        mGoodsDetailLayout.setOnViewChangeListener(new GoodsDetailLayout.onViewChangeListener() {

            @Override
            public void onPullAnim(int index) {
                if(index == GoodsDetailLayout.UP){
                    mTextView.setText("松开加载更多");
                    mImageView.setRotation(180);

                }else {
                    mTextView.setText("下拉回到顶部");
                    mImageView.setRotation(180);
                }

            }

            @Override
            public void onDownAnim(int index) {

                if(index == GoodsDetailLayout.UP){
                    mTextView.setText("上拉加载更多");
                    mImageView.setRotation(0);
                }else {

                    mTextView.setText("松开回到顶部");
                    mImageView.setRotation(0);
                }

            }

            @Override
            public void onUp() {
                mTextView.setText("上拉加载更多");
            }

        });
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,332评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,508评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,812评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,607评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,728评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,919评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,071评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,802评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,256评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,576评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,712评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,389评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,032评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,026评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,473评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,606评论 2 350