Back to project page apps-android-commons.
The source code is released under:
Apache License
If you think the Android project apps-android-commons 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 org.wikimedia.commons.contributions; /* w w w.j a v a2 s. co m*/ import android.view.View; import android.widget.ImageView; import android.widget.ProgressBar; import android.widget.TextView; import org.wikimedia.commons.MediaWikiImageView; import org.wikimedia.commons.R; class ContributionViewHolder { final MediaWikiImageView imageView; final TextView titleView; final TextView stateView; final TextView seqNumView; final ProgressBar progressView; String url; ContributionViewHolder(View parent) { imageView = (MediaWikiImageView) parent.findViewById(R.id.contributionImage); titleView = (TextView)parent.findViewById(R.id.contributionTitle); stateView = (TextView)parent.findViewById(R.id.contributionState); seqNumView = (TextView)parent.findViewById(R.id.contributionSequenceNumber); progressView = (ProgressBar)parent.findViewById(R.id.contributionProgress); } }