Back to project page SuperSLiM.
The source code is released under:
Apache License
If you think the Android project SuperSLiM 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.tonicartos.superslimexample; //from w w w . jav a 2 s . c o m import android.support.v7.widget.RecyclerView; import android.view.View; import android.widget.TextView; /** * Simple view holder for a single text view. */ class CountryViewHolder extends RecyclerView.ViewHolder { private TextView mTextView; CountryViewHolder(View view) { super(view); mTextView = (TextView) view.findViewById(R.id.text); } public void bindItem(String text) { mTextView.setText(text); } @Override public String toString() { return mTextView.getText().toString(); } }