Android 首页TAB突出部分的布局

一、先看一下效果
底部Tab突出效果.jpg
二、效果分析图
效果分析图.jpg
  1. 自定义View由三部分组成:两条直线 + 一条圆弧
  2. 圆弧左边点的距离 = (宽度 - 中间距离) / 2
  3. 圆弧右边点的距离 = (宽度 - 中间距离) / 2 + 中间距离
  4. 圆心:cx = 宽度 / 2 、 cy = 高度 + offsetY
  5. 圆的半径 : R = cos Q / (中间距离 / 2)
  6. 夹角和中间距离自定义,可根据实际做小调整
三、自定义属性
  1. 线和圆弧的颜色、大小(高度)

  2. 中间的距离

  3. 夹角

     <declare-styleable name="OutView">
         <!--线的颜色-->
         <attr name="outViewLineColor" format="color" />
         <!--线的高度-->
         <attr name="outViewLineHeight" format="dimension" />
         <!--圆中间的距离-->
         <attr name="outViewDistance" format="dimension" />
         <!--偏移的角度-->
         <attr name="outViewOffsetAngle" format="float" />
     </declare-styleable>
    
四、编写自定义OutView ,代码不难,关键是上面的分析
    /**
     * 底部突出来的View
     */

    public class OutView extends View {
        /**
         * 线的高度
         */
        public int mLineHeight = 1;
        /**
         * 线的颜色
         */
        private int mLineColor;
        /**
         * 中间的线宽度
         */
        private int mDistance;
        /**
         * 夹角
         */
        private double Q = Math.PI / 4;
        /**
         * 圆的半径
         */
        private float mRadius;
        /**
         * 圆偏移的距离
         */
        private int mOffsetY;

        private Paint mPaint;

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

        public OutView(Context context, @Nullable AttributeSet attrs) {
            this(context, attrs, 0);
        }

        public OutView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
            super(context, attrs, defStyleAttr);
            TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.OutView);
            mLineHeight = (int) array.getDimension(R.styleable.OutView_outViewLineHeight, dip2px(mLineHeight));
            mLineColor = array.getColor(R.styleable.OutView_outViewLineColor, Color.parseColor("#dddddd"));
            mDistance = (int) array.getDimension(R.styleable.OutView_outViewDistance, dip2px(20));
            float angle = array.getFloat(R.styleable.OutView_outViewOffsetAngle, 30);
            array.recycle();
            // rad(弧度) = deg(角度) *  PI / 180
            Q = angle * Math.PI / 180;
            mPaint = new Paint();
            mPaint.setAntiAlias(true);
            mPaint.setDither(true);
            mPaint.setColor(mLineColor);
            mPaint.setStrokeWidth(mLineHeight);
        }

        private float dip2px(int value) {
            return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, value, getResources().getDisplayMetrics()) + 0.5f;
        }

        @Override
        protected void onSizeChanged(int w, int h, int oldw, int oldh) {
            super.onSizeChanged(w, h, oldw, oldh);
            // 圆的半径
            mRadius = (float) (mDistance / 2 / Math.cos(Q));
            // 圆心偏移Y的距离
            mOffsetY = (int) (mDistance / 2 * Math.tan(Q));
        }

        @Override
        protected void onDraw(Canvas canvas) {
            // 画线
            mPaint.setStyle(Paint.Style.FILL);
            int y = getHeight() - mLineHeight / 2;
            int stopX = (getWidth() - mDistance) / 2;
            canvas.drawLine(0, y, stopX, y, mPaint);
            // 画圆
            mPaint.setStyle(Paint.Style.STROKE);
            canvas.drawCircle(getWidth() / 2, getHeight() + mOffsetY, mRadius, mPaint);
            // 画线
            mPaint.setStyle(Paint.Style.FILL);
            canvas.drawLine(stopX + mDistance, y, getWidth(), y, mPaint);
        }
    }
五、Activity的布局,这个要技巧
    <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout 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"
        android:orientation="vertical">

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <!--内容区域-->
            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginBottom="50dp"
                android:layout_weight="1"
                android:background="#45784578">

            </FrameLayout>

            <!--在这里设置背景色-->
            <View
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_gravity="bottom"
                android:background="#66f41410" />

        </FrameLayout>


        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="70dp"
            android:layout_gravity="bottom">


            <!--自己慢慢调-->
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="horizontal">

                <ImageView
                    android:layout_width="0dp"
                    android:layout_height="50dp"
                    android:layout_gravity="bottom"
                    android:layout_weight="1"
                    android:scaleType="center"
                    android:src="@mipmap/ic_launcher" />

                <ImageView
                    android:layout_width="0dp"
                    android:layout_height="50dp"
                    android:layout_gravity="bottom"
                    android:layout_weight="1"
                    android:scaleType="center"
                    android:src="@mipmap/ic_launcher_round" />

                <ImageView
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:scaleType="center"
                    android:src="@mipmap/ic_launcher_round" />

                <ImageView
                    android:layout_width="0dp"
                    android:layout_height="50dp"
                    android:layout_gravity="bottom"
                    android:layout_weight="1"
                    android:scaleType="center"
                    android:src="@mipmap/ic_launcher_round" />

                <ImageView
                    android:layout_width="0dp"
                    android:layout_height="50dp"
                    android:layout_gravity="bottom"
                    android:layout_weight="1"
                    android:scaleType="center"
                    android:src="@mipmap/ic_launcher_round" />
            </LinearLayout>

            <!--这个就是-->
            <com.wen.routerdemo.view.OutView
                android:layout_width="match_parent"
                android:layout_height="20dp"
                app:outViewDistance="45dp"
                app:outViewLineColor="#ff0000"
                app:outViewOffsetAngle="30" />
        </FrameLayout>


    </FrameLayout>

实际开发要自己去调整,上面的代码仅供参考。
运行的效果就是开始那个效果。
效果是帮朋友写的,刚开始没想好,瞎写。后面画了分析图才搞定。

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

推荐阅读更多精彩内容