Skip to content

Latest commit

 

History

History
115 lines (86 loc) · 3.5 KB

README.zh.md

File metadata and controls

115 lines (86 loc) · 3.5 KB

CommonAdapter

Build Status Jitpack Apache 2.0

一个 ListView / RecyclerView 通用的适配器

English

  • 可以当做一个 ListView / RecyclerView 通用的 adapter.
  • 支持(而且更加方便) RecyclerView 的多 view type 布局. 这里有一个 demo 来演示如何使用本项目实现多 ViewType 的 RecyclerView

介绍

引用

allprojects {
	repositories {
		// ...
		maven { url "https://rasp.xyz/nexus/repository/twiceyuan/" }
	}
}
compile("com.github.twiceyuan:CommonAdapter:0.7.3") {
  exclude group: 'com.android.support', module: 'recyclerview-v7'
}

使用

  1. 创建一个 ViewHolder 并继承 CommonHolder<T>,T 为实体数据类型
// 绑定布局资源
@LayoutId(R.layout.item_person)
public class PersonHolder extends CommonHolder<Person> {

    // 绑定 View 资源
    @ViewId(R.id.name) TextView name;
    @ViewId(R.id.email) TextView email;

    // 绑定数据
    @Override public void bindData(Person person) {
        name.setText(person.name);
        email.setText(person.email);
    }
}
  1. 创建适配器并配置到 ListView 或者 RecyclerView 上

    RecyclerView Adapter

    // 构造适配器
    CommonAdapter<Person, PersonHolder> recyclerAdapter = new CommonAdapter<>(this, PersonHolder.class);
    
    // 配置适配器
    mRecyclerView.setAdapter(recyclerAdapter);

    ListView Adapter

    // 构造适配器
    CommonListAdapter<Person, PersonHolder> listAdapter = new CommonListAdapter<>(this, PersonHolder.class);
    
    // 配置适配器
    mListView.setAdapter(listAdapter);

    配置监听器 (通过 Holder)

    recyclerAdapter.setOnBindListener((position, person, holder) -> {
        // holder 用于直接对 view 配置监听器
        holder.name.setOnClickListener((v) -> toast(person.name));
        holder.email.setOnClickListener((v) -> toast(person.email));
    });

混淆过滤(Proguard)

-keepattributes *Annotation*
-keepclassmembers class * extends com.twiceyuan.commonadapter.library.holder.CommonHolder {
    public <init>(...);
}

感谢

许可

Copyright 2016 twiceYuan.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.