您的位置:首页 > 编程语言

Github最火开源项目-一分钟实现向左拖拽跳转详情页

2017-05-08 22:20 477 查看
开源地址:https://github.com/open-android/DragFooterView

一个向左拖拽跳转至更多页面的通用控件

视频地址:https://v.qq.com/x/page/a0383m70fzs.html



详细的使用方法在DEMO里面都演示啦,如果你觉得这个库还不错,请赏我一颗star吧~~~

欢迎关注微信公众号、长期为您推荐优秀博文、开源项目、视频

微信公众号名称:Android干货程序员



自定义你自己的Footer效果

作为一个library,当然不能只支持以上那一种效果啦,所以,这个库的

Footer应该是可定制的,可插拔的。定制Footer只需定义一个继承自

BaseFooterDrawer的类,然后在参数中提供的区域中绘制即可,而其余

的事件分发,拦截都不需要关心。以下是我自己定制的两种Footer效果。





使用步骤

1. 在project的build.gradle添加如下代码(如下图)

allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}




2. 在Module的build.gradle添加依赖

compile 'com.github.open-android:DragFooterView:0.1.0'


用法

1、在xml中配置如下 (注意:DragContainer只能有一个子View),RecyclerView向左拖拽

<com.fangxu.library.DragContainer
android:id="@+id/drag_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp">

<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white" />
</com.fangxu.library.DragContainer>


2、在java类中添加事件监听器DragListener

DragContainer dragContainer = (DragContainer) findViewById(R.id.drag_recycler_view);

//若需使用自己定制的footer,需要调用DragContainer的setFooterDrawer方法设置定制的footer类,如下
dragContainer.setFooterDrawer(new ArrowPathFooterDrawer.Builder(this, 0xff444444).setPathColor(0xffffffff).build());

dragContainer.setDragListener(new DragListener() {
@Override
public void onDragEvent() {
//do whatever you want,for example skip to the load more Activity.
Intent intent = new Intent(HomeActivity.this, ShowMoreActivity.class);
startActivity(intent);
}
});
@Override
public void onDragEvent() {
Intent intent = new Intent(HomeActivity.this, ShowMoreActivity.class);
startActivity(intent);
}


属性

attributevalue typedefalut valuedescription
dc_footer_colorcolor0xffcdcdcdfooter view的背景颜色
dc_reset_animator_durationinteger700松开拖拽后复位动画的时长
dc_drag_dampfloat0.5f拖拽阻尼系数,取值在(0,1]之间,取值越小,阻尼越大
* 细节注意:

//若需使用自己定制的footer,需要调用DragContainer的setFooterDrawer方法设置定制的footer类,如下

dragContainer.setFooterDrawer(new ArrowPathFooterDrawer.Builder(this, 0xff444444).setPathColor(0xffffffff).build());

其他控件用法 (HorizontalScrollView用法)

“`xml

```java
private void setupHorizontalScrollView() {
LinearLayout linearLayout = (LinearLayout) findViewById(R.id.linear_layout);
for (int i = 10; i < 20; i++) {
ImageView imageView = new ImageView(this);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(dp2px(120), ViewGroup.LayoutParams.MATCH_PARENT);
params.leftMargin = 0;
params.rightMargin = dp2px(5);
imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
imageView.setLayoutParams(params);
linearLayout.addView(imageView);
Glide.with(this).load(Constants.urls[i]).into(imageView);
}

DragContainer dragContainer = (DragContainer) findViewById(R.id.drag_scroll_view);
BaseFooterDrawer drawer = new com.fangxu.dragfooterview.customfooters.ArrowPathFooterDrawer.Builder(this, 0xff444444).setPathColor(0xffffffff).build();
dragContainer.setFooterDrawer(drawer);
dragContainer.setDragListener(this);
}


(ImageView用法)

“`xml
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐