# LikeELMLeftLoad **Repository Path**: ekber/LikeELMLeftLoad ## Basic Information - **Project Name**: LikeELMLeftLoad - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-11-08 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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(); } }); ```