篇首语:本文由编程笔记#小编为大家整理,主要介绍了Android实现文章+评论(MVP,RxJava,Dagger2,ButterKnife)相关的知识,希望对你有一定的参考价值。
这个项目主要有两个功能,一个加载网页/文章,另一个用来显示评论。并应用了MVP模式,Dagger2、RxJava、ButterKnife等开源框架。效果图如下:
首先来看一下布局文件:
<android.support.design.widget.CoordinatorLayout xmlns:android&#61;"http://schemas.android.com/apk/res/android"
xmlns:app&#61;"http://schemas.android.com/apk/res-auto"
xmlns:tools&#61;"http://schemas.android.com/tools"
android:background&#61;"#ffffff"
android:layout_width&#61;"match_parent"
android:layout_height&#61;"match_parent"
android:fitsSystemWindows&#61;"true"
tools:context&#61;"com.dean.articlecomment.article.ArticleActivity">
<com.dean.articlecomment.ui.XAppBarLayout
android:id&#61;"&#64;&#43;id/app_bar"
android:layout_width&#61;"match_parent"
android:layout_height&#61;"wrap_content"
android:fitsSystemWindows&#61;"true"
android:theme&#61;"&#64;style/AppTheme.AppBarOverlay">
android:id&#61;"&#64;&#43;id/toolbar"
android:fitsSystemWindows&#61;"true"
android:layout_width&#61;"match_parent"
android:layout_height&#61;"?attr/actionBarSize"
app:layout_scrollFlags&#61;"scroll|enterAlways"
app:popupTheme&#61;"&#64;style/AppTheme.PopupOverlay" />
com.dean.articlecomment.ui.XAppBarLayout>
在显示网页文章时是仿知乎的操作&#xff0c;向下滑动时隐藏toolbar和屏幕下方发表评论的视图&#xff0c;向上滚动时再显示。
toolbar的显示隐藏是通过设置其scrollFlags属性实现的。
enterAlways&#xff1a;向上滑时toolbar隐藏&#xff0c;向下滑动即展示。
enterAlwaysCollapsed&#xff1a;向上滑时toolbar隐藏&#xff0c;向下滑动直到NestedScrollView的底部时toolbar才展示。
exitUntilCollapsed&#xff1a;当你定义了一个minHeight&#xff0c;这个view将在滚动到达这个最小高度的时候消失。
snap&#xff1a;突然折断的意思&#xff0c;效果同enterAlwaysCollapsed&#xff0c;区别为滚动时手指离开屏幕时
toolbar不会显示一半的状态&#xff0c;显示的部分大于一半时即全漏出来&#xff0c;小于一半时即隐藏掉。
article_bottom_view是屏幕下方的评论条&#xff0c;它的隐藏显示与toolbar同步&#xff0c;使用方式是通过AppBarLayout.OnOffsetChangedListener
的状态监听与动画实现的。
&#64;Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
if (verticalOffset >&#61; 0) {
if (xAppBarListener !&#61; null) {
xAppBarListener.onFingerDown();
}
} else {
if (xAppBarListener !&#61; null) {
xAppBarListener.onFingerUp();
}
}
}
content_scrolling布局如下&#xff1a;
<com.dean.articlecomment.ui.XNestedScrollView xmlns:android&#61;"http://schemas.android.com/apk/res/android"
xmlns:app&#61;"http://schemas.android.com/apk/res-auto"
xmlns:tools&#61;"http://schemas.android.com/tools"
android:id&#61;"&#64;&#43;id/scrollView"
android:layout_width&#61;"match_parent"
android:layout_height&#61;"match_parent"
app:layout_behavior&#61;"&#64;string/appbar_scrolling_view_behavior"
tools:showIn&#61;"&#64;layout/activity_scrolling">
<LinearLayout
android:layout_width&#61;"match_parent"
android:layout_height&#61;"wrap_content"
android:orientation&#61;"vertical">
<FrameLayout
android:id&#61;"&#64;&#43;id/article_content_view"
android:layout_width&#61;"match_parent"
android:layout_height&#61;"wrap_content">
FrameLayout>
<FrameLayout
android:id&#61;"&#64;&#43;id/comment_content_view"
android:layout_width&#61;"match_parent"
android:layout_height&#61;"wrap_content">
FrameLayout>
LinearLayout>
com.dean.articlecomment.ui.XNestedScrollView>
NestedScrollView中嵌套两个视图article_content_view&#xff0c;comment_content_view。分别是用于显示文章Fragment视图和评论fragment视图。
文章Fragment中使用Webview来显示网页&#xff0f;文章。
Webview使用了腾讯的X5WebView&#xff0c;并在外层封装一个加载用的进度条。
文章Fragment中使用了RecycleView&#xff08;根据XRecyclerView改造&#xff09;来显示添加评论&#xff0c;并且可以进行滑动加载更多。
值得注意的是NestedScrollview中嵌套RecycleView的问题&#xff0c;解决方法是&#xff1a;
使用Android Support Library 23.2.0以上&#xff0c;设置layoutManager.setAutoMeasureEnabled(true);
将recyclerView的高度设置为wrap_content
设置recyclerView.setNestedScrollingEnabled(false)
避免和NestedScrolling的滑动冲突。
由于禁用了recyclerView的滚动&#xff0c;所以在实现底部加载更多的时候需要监听外层的NestedScrollingView
本Demo使用了MVP模式(关于MVP的文章网上很多&#xff0c;我这里就不过多介绍)&#xff0c;主要借鉴了下面3个开源项目。并作了一些改动。
googlesamples/android-architecture
JessYanCoding/MVPArms
codeestX/GeekNews&#xff08;主要参考&#xff09;
大多数MVP模式里都是View持有Presenter的引用。一个fragment对应一个页面&#xff0c;一个页面对应一个Presenter&#xff0c;因此如果一个功能中页面较多时会导致逻辑复杂以及代码文件的增加。
我这里的处理是反过来使Presenter持有View的引用&#xff0c;即一个Activity持有一个Presenter&#xff0c;每个Fragment是一个View&#xff0c;用一个Presenter持有所有的View引用。
所有的逻辑和业务代码都放在Presenter中处理&#xff0c;Activity和Fragment只负责页面的显示。这样的好处是结构简单&#xff0c;逻辑比较清晰&#xff0c;方便在多个view中交互操作。缺点就是会导致Presenter中代码量过大。
代码如下&#xff1a;
public class ArticlePresenter extends RxPresenter implements ArticleContract.Presenter {
protected final ArticleContract.ArticleView articleView;
protected final ArticleContract.CommentView commentView;
protected final ArticleContract.View bottomView;
&#64;Inject
public ArticlePresenter(ArticleContract.ArticleView articleView, ArticleContract.CommentView commentView, ArticleContract.View bottomView) {
this.articleView &#61; articleView;
this.commentView &#61; commentView;
this.bottomView &#61; bottomView;
}
&#64;Inject
void setupListeners() {
// view中注入presenter
articleView.setPresenter(this);
commentView.setPresenter(this);
bottomView.setPresenter(this);
}
}
Contract代码如下&#xff1a;
public interface ArticleContract {
interface Presenter extends BasePresenter {
void addComment();
void showBottomView();
void hideBottomView();
void onLoadingArticle();
void onLoadingComment();
void onLoadingMoreComment();
void onLoadingArticleSuccess();
void onLoadingArticleFailed();
}
interface CommentView extends BaseView<Presenter> {
void showComments(ArrayList
void showLoadMoreComments(ArrayList
void addComment(ArticleComment comment);
void onScrollToPageEnd();
}
interface ArticleView extends BaseView<Presenter> {
void showArticle(String url);
}
interface View extends BaseView<Presenter> {
void showBottomView();
void hideBottomView();
void goToComment();
void goToArticle();
}
}
ReactiveX/RxJava
ReactiveX/RxAndroid
Rxjava也是最近才知道。。。使用后发现是真的很牛逼。。。
于是也简单的在这个Demo中应用了一下&#xff0c;加载更多评论的代码如下&#xff1a;
&#64;Override
public void onLoadingMoreComment() {
Subscription rxSubscription &#61; Observable
.create(new Observable.OnSubscribe
&#64;Override
public void call(Subscriber super ArrayList
ArrayList
for (int i &#61; 0; i <5; i&#43;&#43;) {
ArticleComment newComment &#61; new ArticleComment();
newComment.userName &#61; "游客" &#43; i;
newComment.commentContent &#61; "他很懒什么都没说。";
comments.add(newComment);
}
subscriber.onNext(comments);
}
})
.delay(2, TimeUnit.SECONDS)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new Observer
&#64;Override
public void onCompleted() {
}
&#64;Override
public void onError(Throwable e) {
}
&#64;Override
public void onNext(ArrayList
if (commentView.isActive())
commentView.showLoadMoreComments(articleComments);
}
});
addSubscribe(rxSubscription);
}
Rxjava简单使用很容易&#xff0c;但要达到能适应各种场景就不轻松了&#xff0c;我也在摸索中。下面列出我找到相关文章&#xff1a;
给 Android 开发者的 RxJava 详解
RxJava操作符大全
ReactiveX/RxJava文档中文版
google/dagger
实话实说&#xff0c;这个依赖注入框架真心不太明白&#xff0c;感觉学习成本和使用成本都有点高&#xff0c;demo里也仅仅做了最简单的应用。
下面列出我觉得不错的文章&#xff1a;
依赖注入神器&#xff1a;Dagger2详解系列
JakeWharton/butterknife
视图注入框架&#xff0c;很好用&#xff01;网上例子很多&#xff0c;使用起来也方便就不介绍了。
还有一些小细节&#xff0c;比如添加&#xff0f;删除评论&#xff0c;双击toolbar回到文章头&#xff0c;点击评论按钮跳转到评论等等。写这个demo的主要目的是为了练习使用MVP以及各种开源框架&#xff0c;如果以后有时间会陆续加入下面列表中的开源框架。
demo地址&#xff1a;
https://github.com/a396901990/Article-Comment