|
@@ -0,0 +1,241 @@
|
|
|
|
|
+package com.sheep.gamegroup.util;
|
|
|
|
|
+
|
|
|
|
|
+import android.annotation.SuppressLint;
|
|
|
|
|
+import android.content.Context;
|
|
|
|
|
+import android.graphics.Bitmap;
|
|
|
|
|
+import android.graphics.Typeface;
|
|
|
|
|
+import android.graphics.drawable.Drawable;
|
|
|
|
|
+import android.os.Build;
|
|
|
|
|
+import android.text.util.Linkify;
|
|
|
|
|
+import android.util.SparseArray;
|
|
|
|
|
+import android.view.LayoutInflater;
|
|
|
|
|
+import android.view.View;
|
|
|
|
|
+import android.view.ViewGroup;
|
|
|
|
|
+import android.view.animation.AlphaAnimation;
|
|
|
|
|
+import android.widget.Checkable;
|
|
|
|
|
+import android.widget.ImageView;
|
|
|
|
|
+import android.widget.ProgressBar;
|
|
|
|
|
+import android.widget.RatingBar;
|
|
|
|
|
+import android.widget.TextView;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * Created by ljy on 2018/3/20.
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
+public class ViewHolder extends android.support.v7.widget.RecyclerView.ViewHolder {
|
|
|
|
|
+ private SparseArray<View> mViews;
|
|
|
|
|
+ private int mPosition;
|
|
|
|
|
+ private View mConvertView;
|
|
|
|
|
+ private Context mContext;
|
|
|
|
|
+ private int mLayoutId;
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder(Context context, View itemView, ViewGroup parent, int position) {
|
|
|
|
|
+ super(itemView);
|
|
|
|
|
+ this.mContext = context;
|
|
|
|
|
+ this.mConvertView = itemView;
|
|
|
|
|
+ this.mPosition = position;
|
|
|
|
|
+ this.mViews = new SparseArray();
|
|
|
|
|
+ this.mConvertView.setTag(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public static ViewHolder get(Context context, View convertView, ViewGroup parent, int layoutId, int position) {
|
|
|
|
|
+ if(convertView == null) {
|
|
|
|
|
+ View itemView = LayoutInflater.from(context).inflate(layoutId, parent, false);
|
|
|
|
|
+ ViewHolder holder = new ViewHolder(context, itemView, parent, position);
|
|
|
|
|
+ holder.mLayoutId = layoutId;
|
|
|
|
|
+ return holder;
|
|
|
|
|
+ } else {
|
|
|
|
|
+ ViewHolder holder = (ViewHolder)convertView.getTag();
|
|
|
|
|
+ holder.mPosition = position;
|
|
|
|
|
+ return holder;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public <T extends View> T getView(int viewId) {
|
|
|
|
|
+ View view = (View)this.mViews.get(viewId);
|
|
|
|
|
+ if(view == null) {
|
|
|
|
|
+ view = this.mConvertView.findViewById(viewId);
|
|
|
|
|
+ this.mViews.put(viewId, view);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ return (T) view;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public <T extends View> T getView(int viewId, Class<T> t) {
|
|
|
|
|
+ View view = (View)this.mViews.get(viewId);
|
|
|
|
|
+ if(view == null) {
|
|
|
|
|
+ view = this.mConvertView.findViewById(viewId);
|
|
|
|
|
+ this.mViews.put(viewId, view);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ return (T) view;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public View getConvertView() {
|
|
|
|
|
+ return this.mConvertView;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setText(int viewId, String text) {
|
|
|
|
|
+ TextView tv = (TextView)this.getView(viewId);
|
|
|
|
|
+ tv.setText(text);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setImageResource(int viewId, int resId) {
|
|
|
|
|
+ ImageView view = (ImageView)this.getView(viewId);
|
|
|
|
|
+ view.setImageResource(resId);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setImageBitmap(int viewId, Bitmap bitmap) {
|
|
|
|
|
+ ImageView view = (ImageView)this.getView(viewId);
|
|
|
|
|
+ view.setImageBitmap(bitmap);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setImageDrawable(int viewId, Drawable drawable) {
|
|
|
|
|
+ ImageView view = (ImageView)this.getView(viewId);
|
|
|
|
|
+ view.setImageDrawable(drawable);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setBackgroundColor(int viewId, int color) {
|
|
|
|
|
+ View view = this.getView(viewId);
|
|
|
|
|
+ view.setBackgroundColor(color);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setBackgroundRes(int viewId, int backgroundRes) {
|
|
|
|
|
+ View view = this.getView(viewId);
|
|
|
|
|
+ view.setBackgroundResource(backgroundRes);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setTextColor(int viewId, int textColor) {
|
|
|
|
|
+ TextView view = (TextView)this.getView(viewId);
|
|
|
|
|
+ view.setTextColor(textColor);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setTextColorRes(int viewId, int textColorRes) {
|
|
|
|
|
+ TextView view = (TextView)this.getView(viewId);
|
|
|
|
|
+ view.setTextColor(this.mContext.getResources().getColor(textColorRes));
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @SuppressLint({"NewApi"})
|
|
|
|
|
+ public ViewHolder setAlpha(int viewId, float value) {
|
|
|
|
|
+ if(Build.VERSION.SDK_INT >= 11) {
|
|
|
|
|
+ this.getView(viewId).setAlpha(value);
|
|
|
|
|
+ } else {
|
|
|
|
|
+ AlphaAnimation alpha = new AlphaAnimation(value, value);
|
|
|
|
|
+ alpha.setDuration(0L);
|
|
|
|
|
+ alpha.setFillAfter(true);
|
|
|
|
|
+ this.getView(viewId).startAnimation(alpha);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setVisible(int viewId, boolean visible) {
|
|
|
|
|
+ View view = this.getView(viewId);
|
|
|
|
|
+ view.setVisibility(visible?View.VISIBLE:View.GONE);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder linkify(int viewId) {
|
|
|
|
|
+ TextView view = (TextView)this.getView(viewId);
|
|
|
|
|
+ Linkify.addLinks(view, Linkify.ALL);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setTypeface(Typeface typeface, int... viewIds) {
|
|
|
|
|
+ int[] var3 = viewIds;
|
|
|
|
|
+ int var4 = viewIds.length;
|
|
|
|
|
+
|
|
|
|
|
+ for(int var5 = 0; var5 < var4; ++var5) {
|
|
|
|
|
+ int viewId = var3[var5];
|
|
|
|
|
+ TextView view = (TextView)this.getView(viewId);
|
|
|
|
|
+ view.setTypeface(typeface);
|
|
|
|
|
+ view.setPaintFlags(view.getPaintFlags() | 128);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setProgress(int viewId, int progress) {
|
|
|
|
|
+ ProgressBar view = (ProgressBar)this.getView(viewId);
|
|
|
|
|
+ view.setProgress(progress);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setProgress(int viewId, int progress, int max) {
|
|
|
|
|
+ ProgressBar view = (ProgressBar)this.getView(viewId);
|
|
|
|
|
+ view.setMax(max);
|
|
|
|
|
+ view.setProgress(progress);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setMax(int viewId, int max) {
|
|
|
|
|
+ ProgressBar view = (ProgressBar)this.getView(viewId);
|
|
|
|
|
+ view.setMax(max);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setRating(int viewId, float rating) {
|
|
|
|
|
+ RatingBar view = (RatingBar)this.getView(viewId);
|
|
|
|
|
+ view.setRating(rating);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setRating(int viewId, float rating, int max) {
|
|
|
|
|
+ RatingBar view = (RatingBar)this.getView(viewId);
|
|
|
|
|
+ view.setMax(max);
|
|
|
|
|
+ view.setRating(rating);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setTag(int viewId, Object tag) {
|
|
|
|
|
+ View view = this.getView(viewId);
|
|
|
|
|
+ view.setTag(tag);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setTag(int viewId, int key, Object tag) {
|
|
|
|
|
+ View view = this.getView(viewId);
|
|
|
|
|
+ view.setTag(key, tag);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setChecked(int viewId, boolean checked) {
|
|
|
|
|
+ Checkable view = (Checkable)this.getView(viewId);
|
|
|
|
|
+ view.setChecked(checked);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setOnClickListener(int viewId, View.OnClickListener listener) {
|
|
|
|
|
+ View view = this.getView(viewId);
|
|
|
|
|
+ view.setOnClickListener(listener);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setOnTouchListener(int viewId, View.OnTouchListener listener) {
|
|
|
|
|
+ View view = this.getView(viewId);
|
|
|
|
|
+ view.setOnTouchListener(listener);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ViewHolder setOnLongClickListener(int viewId, View.OnLongClickListener listener) {
|
|
|
|
|
+ View view = this.getView(viewId);
|
|
|
|
|
+ view.setOnLongClickListener(listener);
|
|
|
|
|
+ return this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void updatePosition(int position) {
|
|
|
|
|
+ this.mPosition = position;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public int getLayoutId() {
|
|
|
|
|
+ return this.mLayoutId;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|