Android自定义View,访简书赞赏平放

一、先看一下要实现的效果
简书效果图.jpg

公司UI效果图.jpg
二、自定义View的一般套路
1. 效果分析,自定义属性
2. 测量控件的宽高
3. 摆放控件的位置
4. 绘制控件
5. 用户交互(事件处理)
三、要实现的效果分析
  1. 简书上的效果是第二个View压在第一个上,依此类推
  2. 而公司给的效果是第一个压在第二个上,依此类推
  3. 就是两个View之间的间距公司给的UI挤一点,简书上的宽一些
四、根据效果分析自定义属性
<declare-styleable name="LineLayout">
    <!--两个View之间的间距 :值越小就越近,越大就越远-->
    <attr name="lineViewMarginRate" format="float" />
    <!--View的层次关系,true:前面的在上,false:后面的在上-->
    <attr name="lineIsReverse" format="boolean" />
</declare-styleable>
五、自定义ViewGroup,赞赏平放的布局,并找到自定义属性
/**
 * 访简书赞赏平放的布局
 */

public class LineLayout extends ViewGroup {
    /**
     * 两个View之间距的比例
     */
    private float mViewMarginRate = 0.5f;
    /**
     * 是不是从后面向前摆放
     */
    private boolean mIsReverse = true;


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

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

    public LineLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.LineLayout);
        // 默认是在一半的位置
        mViewMarginRate = array.getFloat(R.styleable.LineLayout_lineViewMarginRate, mViewMarginRate);
        // 默认第一个在上面
        mIsReverse = array.getBoolean(R.styleable.LineLayout_lineIsReverse, mIsReverse);
        array.recycle();
    }
   
}
六、测量控件的宽高

先看一下摆放的示意图:


摆放示意图.jpg
  1. 控件的宽度上图可以得出

  2. 控件的高度就是子View的最高的那个的高度

     @Override
     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
         // 1.测量控件的宽高
         // 获取自已的测量模式
         int modeWidth = MeasureSpec.getMode(widthMeasureSpec);
         int modeHeight = MeasureSpec.getMode(heightMeasureSpec);
         // 获取自已的宽高
         int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);
         int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);
    
         int count = getChildCount();
         int height = 0;
         int width = 0;
    
         for (int i = 0; i < count; i++) {
             View child = getChildAt(i);
             measureChild(child, widthMeasureSpec, heightMeasureSpec);
             int measuredWidth = child.getMeasuredWidth();
             // 计算控件的宽度
             if (i == 0) {
                 width = measuredWidth;
             } else {
                 width += (int) (mViewMarginRate * width + 0.5f);
             }
             int measuredHeight = child.getMeasuredHeight();
             // 高度取最大的子View的高度
             height = Math.max(height, measuredHeight);
         }
         width += getPaddingLeft() + getPaddingRight();
         height += getPaddingTop() + getPaddingBottom();
         // 设置自己的宽高
         setMeasuredDimension
                 (
                         modeWidth == MeasureSpec.EXACTLY ? sizeWidth : width,
                         modeHeight == MeasureSpec.EXACTLY ? sizeHeight : height
                 );
    
    
     }
    
七、摆放子View

摆放很简单,从(0,0,childWidth,childHeight)开始。
第二个子View的左边开始位置就是叠加左边的间距。

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
            int count = getChildCount();
            int cl = getPaddingLeft();
            int ct = getPaddingTop();
            // 摆放
            for (int i = 0; i < count; i++) {
                View child = getChildAt(i);
                int width = child.getMeasuredWidth();
                int height = child.getMeasuredHeight();
                if (i > 0) {
                    // 计算第二个后面子View左边的位置
                    cl += (int) (mViewMarginRate * width + 0.5f);
                }
                // 摆放子View
                child.layout(cl, ct, cl + width, ct + height);
            }
    }
八、怎么样让前面的View压后面的View
  1. 设置充许改变绘制顺序:setChildrenDrawingOrderEnabled(true);

  2. 复写getChildDrawingOrder这个方法

     @Override
     protected int getChildDrawingOrder(int childCount, int i) {
         // 确定View的绘制优先级
         if (!mIsReverse) {
             return i;
         }
         return childCount - 1 - i;
     }
    
九、方便使用,引入Adapter设置模式
    public abstract class LineAdapter {
        private DataSetObservable mObservable = new DataSetObservable();

        /**
         * 数量
         */
        public abstract int getCount();

        /**
         * 条目的布局
         */
        public abstract View getView(int position, ViewGroup parent);

        /**
         * 注册数据监听
         */
        public void registerDataSetObserver(DataSetObserver observer) {
            mObservable.registerObserver(observer);
        }

        /**
         * 移除数据监听
         */
        public void unregisterDataSetObserver(DataSetObserver observer) {
            mObservable.unregisterObserver(observer);
        }

        /**
         * 内容改变
         */
        public void notifyDataSetChanged() {
            mObservable.notifyChanged();
        }

    }
十、完整代码的编写
/**
 * 访简书赞赏平放的布局
 */

public class LineLayout extends ViewGroup {
    /**
     * 两个View之间距的比例
     */
    private float mViewMarginRate = 0.5f;
    /**
     * 是不是从后面向前摆放
     */
    private boolean mIsReverse = true;


    private LineAdapter mAdapter;
    private DataSetObserver mObserver;

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

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

    public LineLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.LineLayout);
        // 默认是在一半的位置
        mViewMarginRate = array.getFloat(R.styleable.LineLayout_lineViewMarginRate, mViewMarginRate);
        // 默认第一个在上面
        mIsReverse = array.getBoolean(R.styleable.LineLayout_lineIsReverse, mIsReverse);
        array.recycle();

    // 设置充许改变绘制顺序
    setChildrenDrawingOrderEnabled(true);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        // 1.测量控件的宽高
        // 获取自已的测量模式
        int modeWidth = MeasureSpec.getMode(widthMeasureSpec);
        int modeHeight = MeasureSpec.getMode(heightMeasureSpec);
        // 获取自已的宽高
        int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);
        int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);

        int count = getChildCount();
        int height = 0;
        int width = 0;

        for (int i = 0; i < count; i++) {
            View child = getChildAt(i);
            measureChild(child, widthMeasureSpec, heightMeasureSpec);
            int measuredWidth = child.getMeasuredWidth();
            // 计算控件的宽度
            if (i == 0) {
                width = measuredWidth;
            } else {
                width += (int) (mViewMarginRate * width + 0.5f);
            }
            int measuredHeight = child.getMeasuredHeight();
            // 高度取最大的子View的高度
            height = Math.max(height, measuredHeight);
        }
        width += getPaddingLeft() + getPaddingRight();
        height += getPaddingTop() + getPaddingBottom();
        // 设置自己的宽高
        setMeasuredDimension
                (
                        modeWidth == MeasureSpec.EXACTLY ? sizeWidth : width,
                        modeHeight == MeasureSpec.EXACTLY ? sizeHeight : height
                );


    }


    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        if (changed) {
            int count = getChildCount();
            int cl = getPaddingLeft();
            int ct = getPaddingTop();
            // 摆放
            for (int i = 0; i < count; i++) {
                View child = getChildAt(i);
                int width = child.getMeasuredWidth();
                int height = child.getMeasuredHeight();
                if (i > 0) {
                    // 计算第二个后面子View左边的位置
                    cl += (int) (mViewMarginRate * width + 0.5f);
                }
                // 摆放子View
                child.layout(cl, ct, cl + width, ct + height);
            }
        }
    }



    /**
     * 设置Adapter
     */
    public void setAdapter(LineAdapter adapter) {
        // 移除监听
        if (mAdapter != null && mObserver != null) {
            mAdapter.unregisterDataSetObserver(mObserver);
            mAdapter = null;
            mObserver = null;
        }
        if (adapter == null) {
            throw new NullPointerException("FlowBaseAdapter is null");
        }
        mAdapter = adapter;
        resetLayout();
        mObserver = new DataSetObserver() {
            @Override
            public void onChanged() {
                resetLayout();
            }
        };
        mAdapter.registerDataSetObserver(mObserver);

    }

    /**
     * 重新添加布局
     */
    private void resetLayout() {
        removeAllViews();
        int count = mAdapter.getCount();
        for (int i = 0; i < count; i++) {
            View view = mAdapter.getView(i, this);
            addView(view);
        }
    }
@Override
protected int getChildDrawingOrder(int childCount, int i) {
    // 确定View的绘制优先级
    if (!mIsReverse) {
        return i;
    }
    return childCount - 1 - i;
}

    @Override
    protected void onDetachedFromWindow() {
        // 移除监听
        if (mAdapter != null && mObserver != null) {
            mAdapter.unregisterDataSetObserver(mObserver);
            mAdapter = null;
            mObserver = null;

        }
        super.onDetachedFromWindow();
    }
}
十一、测试代码
  1. 测试的布局
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.wen.routerdemo.view.LineLayout xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/line_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp"
        app:lineViewMarginRate="0.7" />

</FrameLayout>
  1. 测试Activity的代码
/**
 * 测试类
 */
public class LineLayoutActivity extends AppActivity {
    private LineLayout mLineLayout;

    @Override
    protected Object getContentLayout() {
        return R.layout.activity_line_layout;
    }

    @Override
    protected void initView(View contentView) {
        mLineLayout = findViewById(R.id.line_layout);
        mLineLayout.setAdapter(new LineAdapter() {
            @Override
            public int getCount() {
                return 8;
            }

            @Override
            public View getView(final int position, ViewGroup parent) {
                ImageView imageView = new ImageView(parent.getContext());
                imageView.setImageResource(R.mipmap.ic_launcher_round);
                if (position == 0) {
                    imageView.setImageResource(R.mipmap.ic_launcher);
                }
                imageView.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        Toast.makeText(LineLayoutActivity.this, "position--" + position, Toast.LENGTH_SHORT).show();
                    }
                });
                return imageView;
            }
        });
    }
}
十二、最后测试效果图
测试效果图.jpg

就这么个小玩意,搞了四个小时,喜欢的点个赞。
源码地址:https://github.com/wenkency/XView

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

推荐阅读更多精彩内容