仿UC评论区域----使用kpswitch三方库

先上效果图:

效果图

本次demo用三方库 implementation 'cn.dreamtobe.kpswitch:library:1.6.1'
附上GitHub地址
本demo主要为底部菜单栏的实现,评论按钮滑动到底部变更为回到顶部按钮,点击评论框出现评论控件
底部菜单栏代码:

public class BottomCommentView extends LinearLayout implements View.OnClickListener {

    @BindView(R.id.tv_comment)
    TextView tvComment;
    @BindView(R.id.iv_comment_and_go_top)
    ImageView ivCommentAndGoTop;
    @BindView(R.id.iv_good)
    ImageView ivGood;
    @BindView(R.id.iv_share)
    ImageView ivShare;
    @BindView(R.id.tv_comment_num)
    TextView tvCommentNum;

    private boolean goTopFlag = false;
    private int commentNum;

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

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

    public BottomCommentView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        View view = LayoutInflater.from(context).inflate(R.layout.bottom_comment_view_layout, this);
        ButterKnife.bind(this, view);
        setChildViewOnclick();
    }

    public void setCommentNum(int commentNum) {
        this.commentNum = commentNum;
    }

    public void setGoTop() {
        // TODO: 2018/12/7 变更为回到顶部
        ivCommentAndGoTop.setImageResource(R.drawable.top);
        tvCommentNum.setVisibility(GONE);
        goTopFlag = true;
    }

    public void setComment() {
        if (commentNum > 0){
            // TODO: 2018/12/7 变更为评论
            ivCommentAndGoTop.setImageResource(R.drawable.comment);
            tvCommentNum.setVisibility(VISIBLE);
            tvCommentNum.setText(commentNum+"");
        }
        goTopFlag = false;
    }

    private void setChildViewOnclick() {
        tvComment.setOnClickListener(this);
        ivCommentAndGoTop.setOnClickListener(this);
        ivGood.setOnClickListener(this);
        ivShare.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        if (v.getId() == R.id.tv_comment) {
            listener.onCommentClick();
        }
        if (v.getId() == R.id.iv_comment_and_go_top) {
            if (goTopFlag)
                listener.onGoTopClick();
            else listener.onCommentListClick();
        }
        if (v.getId() == R.id.iv_good) {
            listener.onGoodClick();
        }
        if (v.getId() == R.id.iv_share) {
            listener.onShareClick();
        }
    }

    private OnItemClickListener listener;

    public BottomCommentView setListener(OnItemClickListener listener) {
        this.listener = listener;
        return this;
    }

    public interface OnItemClickListener {
        //评论框监听
        void onCommentClick();
        //回到顶部监听
        void onGoTopClick();
        //点赞监听
        void onGoodClick();
        //分享按钮监听
        void onShareClick();
        //评论按钮监听
        void onCommentListClick();
    }
}

样式文件:

<?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="wrap_content"
    android:background="@color/colorWhite"
    android:orientation="horizontal"
    android:gravity="center_vertical">

    <TextView
        android:id="@+id/tv_comment"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:layout_weight="1.5"
        android:background="@drawable/comment_edit_bg"
        android:hint="请输入回复内容"
        android:textColor="@color/colorTextSmall"
        android:textSize="@dimen/sp_14" />

    <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:padding="10dp">

        <ImageView
            android:id="@+id/iv_comment_and_go_top"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="10dp"
            android:layout_marginBottom="10dp"
            android:src="@drawable/comment" />

        <TextView
            android:id="@+id/tv_comment_num"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:text="253"
            android:textSize="8sp"
            android:background="@drawable/comment_num_bg"
            android:textColor="@color/colorWhite"/>
        <ImageView
            android:id="@+id/iv_good"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_centerInParent="true"
            android:src="@drawable/good" />

        <ImageView
            android:id="@+id/iv_share"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="10dp"
            android:src="@drawable/share" />
    </RelativeLayout>
</LinearLayout>

用ScrollView实现回到顶部的功能,需要重写ScrollView类,重写onScrollChanged,并暴露接口

public class MyScrollview extends ScrollView {
    private ScrollViewListener scrollViewListener = null;

    public MyScrollview(Context context) {
        super(context);
    }

    public MyScrollview(Context context, AttributeSet attrs,
                        int defStyle) {
        super(context, attrs, defStyle);
    }

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

    public void setScrollViewListener(ScrollViewListener scrollViewListener) {
        this.scrollViewListener = scrollViewListener;
    }

    @Override
    protected void onScrollChanged(int x, int y, int oldx, int oldy) {
        super.onScrollChanged(x, y, oldx, oldy);
        if (scrollViewListener != null) {
            scrollViewListener.onScrollChanged(this, x, y, oldx, oldy);
        }
    }
    public interface ScrollViewListener {
        void onScrollChanged(MyScrollview scrollView, int x, int y, int oldx, int oldy);
    }
}

在activity中实现接口:

svContent.setScrollViewListener((scrollView, x, y, oldx, oldy) -> {
            View childAt = scrollView.getChildAt(0);
            int childHeight = childAt.getHeight();//获取子控件高度
            int height = scrollView.getHeight();//获取Scrollview的控件高度
            if (y + height == childHeight) {//判断条件 当子控件高度=Scrollview的控件高度+x的时候控件到达底部
                bottomCommentView.setGoTop();
            } else bottomCommentView.setComment();

        });

评论框始终位于键盘上方,且键盘与panel可互相且换,根布局需要KPSwitchRootLinearLayout(也可是RelativeLayout等),panel需要KPSwitchPanelLinearLayout等同级,[详见三方库文档](https://github.com/Jacksgong/JKeyboardPanelSwitch/blob/master/NON-FULLSCREEN_TUTORIAL_zh.md):

<?xml version="1.0" encoding="utf-8"?>
<cn.dreamtobe.kpswitch.widget.KPSwitchRootLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:fitsSystemWindows="true"
    tools:context=".MainActivity">

    <include
        android:id="@+id/title"
        layout="@layout/app_title_bar" />

        <com.example.administrator.keyboarddemo.MyScrollview
            android:id="@+id/sv_content"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1">

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

            </LinearLayout>

        </com.example.administrator.keyboarddemo.MyScrollview>
    <include
        android:id="@+id/ly_comment_edit"
        layout="@layout/comment_view_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="gone" />

    <cn.dreamtobe.kpswitch.widget.KPSwitchPanelLinearLayout
        android:id="@+id/panel_root"
        style="@style/Panel"
        android:visibility="gone">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/colorTextDeep" />
    </cn.dreamtobe.kpswitch.widget.KPSwitchPanelLinearLayout>

    <com.example.administrator.keyboarddemo.BottomCommentView
        android:id="@+id/bottom_comment_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</cn.dreamtobe.kpswitch.widget.KPSwitchRootLinearLayout>

在activity中实现:

 @SuppressLint("ClickableViewAccessibility")
    private void setKeyBoard() {
        bottomCommentView.setCommentNum(22);
        bottomCommentView.setListener(this);
        KeyboardUtil.attach(this, panelRoot,
                isShowing -> Log.d(TAG, String.format("Keyboard is %s", isShowing
                        ? "showing" : "hiding")));

        KPSwitchConflictUtil.attach(panelRoot, ivEmoji, editComment,
                switchToPanel -> {
                    if (switchToPanel) {
                        editComment.clearFocus();
                    } else {
                        editComment.requestFocus();
                    }
                });
        svContent.setOnTouchListener((view, motionEvent) -> {
            if (motionEvent.getAction() == MotionEvent.ACTION_UP) {
                KPSwitchConflictUtil.hidePanelAndKeyboard(panelRoot);
                lyComment.setVisibility(View.GONE);
                bottomCommentView.setVisibility(View.VISIBLE);
            }
            return false;
        });

    }

详情可见Demo

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

推荐阅读更多精彩内容

  • 用到的组件 1、通过CocoaPods安装 2、第三方类库安装 3、第三方服务 友盟社会化分享组件 友盟用户反馈 ...
    SunnyLeong阅读 14,631评论 1 180
  • 面试必背 会舍弃、总结概括——根据我这些年面试和看面试题搜集过来的知识点汇总而来 建议根据我的写的面试应对思路中的...
    luoyangzk阅读 6,771评论 6 173
  • 定时器工作在方式2时有何特点?适用于什么应用场合? 【答案】:定时器工作在方式2时是一个可自动装入时间常数初值的8...
    0120李昕阅读 425评论 0 0
  • 看到这样的题目您一定会笑话我,呵着“所谓青春的伤痛”“未成熟的刻意‘成熟’”诸如此类。 您请随意,反正我就爱讲给您...
    清瞳_2e10阅读 176评论 0 0
  • 社交社会技能的训练:1、教会孩子读懂别人。训练的目的:让孩子从面部表情和身体动作语言当中,了解他人的情绪和感受。表...
    一心一德杨柳青阅读 268评论 0 0