Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/CSnowStack/LikeELMLeftLoad

仿饿了么左滑跳转
https://github.com/CSnowStack/LikeELMLeftLoad

Last synced: 1 day ago
JSON representation

仿饿了么左滑跳转

Lists

README

        

## LikeELMLeftLoad
仿饿了么左滑跳转

![预览](https://github.com/CSnowStack/LikeELMLeftLoad/blob/master/img/preview.gif)

## 膜拜巴神

## 使用

### 加依赖

```java
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
}

```

### 把View文件内的文件放到你们那的项目中,还有一些配置文件也要拉过去

### 代码使用
```java

mRecyclerView= (RecyclerView) findViewById(R.id.rcv);
mRecyclerView.setLayoutManager(new LinearLayoutManager(this,LinearLayoutManager.HORIZONTAL,false));
mRecyclerView.setAdapter(new ELMAdapter());

mPullLeftLoadMoreLayout= (PullLeftLoadMoreLayout) findViewById(R.id.pull_load_layout);
mPullLeftLoadMoreLayout.addView(getResources().getDimensionPixelOffset(R.dimen.item_img));
mPullLeftLoadMoreLayout.setFillLoadingColor(ContextCompat.getColor(this,R.color.colorAccent));
mPullLeftLoadMoreLayout.setOnGoListener(new LoadingView.OnNoticeGoListener() {
@Override
public void go() {
Toast.makeText(MainActivity.this,"跳转页面",Toast.LENGTH_SHORT).show();
}
});

```