Back to project page jogjakota-perizinan.
The source code is released under:
MIT License
If you think the Android project jogjakota-perizinan 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 id.go.jogjakota.perizinan; //from ww w . j av a 2 s.c o m import android.support.v7.widget.RecyclerView; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import butterknife.ButterKnife; import butterknife.InjectView; public class TwoLineViewHolder extends RecyclerView.ViewHolder { @InjectView(R.id.text1) TextView mText1; @InjectView(R.id.text2) TextView mText2; @InjectView(R.id.root) ViewGroup mRoot; public TwoLineViewHolder(View itemView) { super(itemView); ButterKnife.inject(this, itemView); } }