Back to project page octodroid.
The source code is released under:
MIT License
If you think the Android project octodroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.octodroid.views.holders; /*from w w w. j a v a2 s . c o m*/ import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.example.octodroid.R; public class ProgressViewHolder extends RecyclerView.ViewHolder { public static ProgressViewHolder create(ViewGroup parent) { View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_item_progress, parent, false); return new ProgressViewHolder(view); } public ProgressViewHolder(View view) { super(view); } }