Github App中的那些帮助类(一)

Github在其网站上发布了Github Android客户端的源码,大家可以到这里下载,绝对值得阅读。

这里我主要是用来记录一些感觉不错的Codes,大家在使用的时候请遵循其Licence。

今天我们就来学习下ViewFinder帮助类,该类是对findViewById方法的封装,包括Window、View和Activity,并且能批量的为控件注册监听。

话不多说,直接上源码------>

/*
 * Copyright 2012 Kevin Sawicki <kevinsawicki@gmail.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.github.kevinsawicki.wishlist;

import android.app.Activity;
import android.content.res.Resources;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.ImageView;
import android.widget.TextView;

/**
 * Helper for finding and tweaking a view's children
 */
public class ViewFinder {

  private static interface FindWrapper {

    View findViewById(int id);

    Resources getResources();
  }

  private static class WindowWrapper implements FindWrapper {

    private final Window window;

    WindowWrapper(final Window window) {
      this.window = window;
    }

    public View findViewById(final int id) {
      return window.findViewById(id);
    }

    public Resources getResources() {
      return window.getContext().getResources();
    }
  }

  private static class ViewWrapper implements FindWrapper {

    private final View view;

    ViewWrapper(final View view) {
      this.view = view;
    }

    public View findViewById(final int id) {
      return view.findViewById(id);
    }

    public Resources getResources() {
      return view.getResources();
    }
  }

  private final FindWrapper wrapper;

  /**
   * Create finder wrapping given view
   *
   * @param view
   */
  public ViewFinder(final View view) {
    wrapper = new ViewWrapper(view);
  }

  /**
   * Create finder wrapping given window
   *
   * @param window
   */
  public ViewFinder(final Window window) {
    wrapper = new WindowWrapper(window);
  }

  /**
   * Create finder wrapping given activity
   *
   * @param activity
   */
  public ViewFinder(final Activity activity) {
    this(activity.getWindow());
  }

  /**
   * Find view with id
   *
   * @param id
   * @return found view
   */
  @SuppressWarnings("unchecked")
  public <V extends View> V find(final int id) {
    return (V) wrapper.findViewById(id);
  }

  /**
   * Get image view with id
   *
   * @param id
   * @return image view
   */
  public ImageView imageView(final int id) {
    return find(id);
  }

  /**
   * Get compound button with id
   *
   * @param id
   * @return image view
   */
  public CompoundButton compoundButton(final int id) {
    return find(id);
  }

  /**
   * Get text view with id
   *
   * @param id
   * @return text view
   */
  public TextView textView(final int id) {
    return find(id);
  }

  /**
   * Set text of child view with given id
   *
   * @param id
   * @param content
   * @return text view
   */
  public TextView setText(final int id, final CharSequence content) {
    final TextView text = find(id);
    text.setText(content);
    return text;
  }

  /**
   * Set text of child view with given id
   *
   * @param id
   * @param content
   * @return text view
   */
  public TextView setText(final int id, final int content) {
    return setText(id, wrapper.getResources().getString(content));
  }

  /**
   * Register on click listener to child view with given id
   *
   * @param id
   * @param listener
   * @return view registered with listener
   */
  public View onClick(final int id, final OnClickListener listener) {
    View clickable = find(id);
    clickable.setOnClickListener(listener);
    return clickable;
  }

  /**
   * Register runnable to be invoked when child view with given id is clicked
   *
   * @param id
   * @param runnable
   * @return view registered with runnable
   */
  public View onClick(final int id, final Runnable runnable) {
    return onClick(id, new OnClickListener() {

      public void onClick(View v) {
        runnable.run();
      }
    });
  }

  /**
   * Register on click listener with all given child view ids
   *
   * @param ids
   * @param listener
   */
  public void onClick(final OnClickListener listener, final int... ids) {
    for (int id : ids)
      find(id).setOnClickListener(listener);
  }

  /**
   * Register runnable to be invoked when all given child view ids are clicked
   *
   * @param ids
   * @param runnable
   */
  public void onClick(final Runnable runnable, final int... ids) {
    onClick(new OnClickListener() {

      public void onClick(View v) {
        runnable.run();
      }
    }, ids);
  }

  /**
   * Set drawable on child image view
   *
   * @param id
   * @param drawable
   * @return image view
   */
  public ImageView setDrawable(final int id, final int drawable) {
    ImageView image = imageView(id);
    image.setImageDrawable(image.getResources().getDrawable(drawable));
    return image;
  }

  /**
   * Register on checked change listener to child view with given id
   *
   * @param id
   * @param listener
   * @return view registered with listener
   */
  public CompoundButton onCheck(final int id,
      final OnCheckedChangeListener listener) {
    CompoundButton checkable = find(id);
    checkable.setOnCheckedChangeListener(listener);
    return checkable;
  }

  /**
   * Register runnable to be invoked when child view with given id is
   * checked/unchecked
   *
   * @param id
   * @param runnable
   * @return view registered with runnable
   */
  public CompoundButton onCheck(final int id, final Runnable runnable) {
    return onCheck(id, new OnCheckedChangeListener() {

      public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
        runnable.run();
      }
    });
  }

  /**
   * Register on checked change listener with all given child view ids
   *
   * @param ids
   * @param listener
   */
  public void onCheck(final OnCheckedChangeListener listener, final int... ids) {
    for (int id : ids)
      compoundButton(id).setOnCheckedChangeListener(listener);
  }

  /**
   * Register runnable to be invoked when all given child view ids are
   * checked/unchecked
   *
   * @param ids
   * @param runnable
   */
  public void onCheck(final Runnable runnable, final int... ids) {
    onCheck(new OnCheckedChangeListener() {

      public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
        runnable.run();
      }
    }, ids);
  }
}

使用方法也很简单,比如在LoginActivity中,有如下代码:
 ViewFinder finder = new ViewFinder(this);
 loginText = finder.find(id.et_login);
 passwordText = finder.find(id.et_password);
跟之前我们使用findViewById方法类似,需要在使用该类之前调用setContentView方法。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值