Skip to content

An intellij idea plugin to generate MultiType Item and ItemViewProvider easily.

License

Notifications You must be signed in to change notification settings

LeeRisk/MultiTypeTemplates

Repository files navigation

MultiTypeTemplates

An intellij idea plugin for Android to generate MultiType Item and ItemViewProvider easily.

Obtaining & Installation

Usage

Right click your packge/directory - New - MultiType Item, then input your name of Item to generate Item and ItemViewProvider files and codes.

Example: If you input "Category", it will generate the Category.java and CategoryViewProvider.java:

public class Category implements Item {

}
public class CategoryViewProvider
        extends ItemViewProvider<Category, CategoryViewProvider.ViewHolder> {

    @NonNull @Override protected ViewHolder onCreateViewHolder(
            @NonNull LayoutInflater inflater, @NonNull ViewGroup parent) {
        View root = inflater.inflate(R.layout.item_category, parent, false);
        return new ViewHolder(root);
    }
    

    @Override protected void onBindViewHolder(
            @NonNull ViewHolder holder, @NonNull Category category) {

    }

    
    static class ViewHolder extends RecyclerView.ViewHolder {

        ViewHolder(View itemView) {
            super(itemView);
        }
    }
}

Thanks

About

An intellij idea plugin to generate MultiType Item and ItemViewProvider easily.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages