Android Open Source - hubblog View Finder






From Project

Back to project page hubblog.

License

The source code is released under:

MIT License

If you think the Android project hubblog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2012 Kevin Sawicki <kevinsawicki@gmail.com>
 */* w  ww  . j a  va  2  s.c o  m*/
 * 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);
  }
}




Java Source Code List

com.donskifarrell.Hubblog.BindingModule.java
com.donskifarrell.Hubblog.Activities.HubblogActivity.java
com.donskifarrell.Hubblog.Activities.LoginActivity.java
com.donskifarrell.Hubblog.Activities.StartupActivity.java
com.donskifarrell.Hubblog.Activities.Adapters.ArticleWebViewAdapter.java
com.donskifarrell.Hubblog.Activities.Adapters.ArticlesAdapter.java
com.donskifarrell.Hubblog.Activities.Adapters.MetadataAdapter.java
com.donskifarrell.Hubblog.Activities.Adapters.SidebarAdapter.java
com.donskifarrell.Hubblog.Activities.Adapters.TabsAdapter.java
com.donskifarrell.Hubblog.Activities.Dialogs.AboutDialogFragment.java
com.donskifarrell.Hubblog.Activities.Dialogs.AddSiteDialogFragment.java
com.donskifarrell.Hubblog.Activities.Dialogs.DeleteArticleDialogFragment.java
com.donskifarrell.Hubblog.Activities.Dialogs.EditArticleTitleDialogFragment.java
com.donskifarrell.Hubblog.Activities.Dialogs.LightAlertDialog.java
com.donskifarrell.Hubblog.Activities.Dialogs.LightProgressDialog.java
com.donskifarrell.Hubblog.Activities.Dialogs.NotificationDialogFragment.java
com.donskifarrell.Hubblog.Activities.Dialogs.SelectSiteDialogFragment.java
com.donskifarrell.Hubblog.Activities.Fragments.BasePageFragment.java
com.donskifarrell.Hubblog.Activities.Fragments.CommitArticleFragment.java
com.donskifarrell.Hubblog.Activities.Fragments.EditArticleFragment.java
com.donskifarrell.Hubblog.Activities.Fragments.EditMarkdownFragment.java
com.donskifarrell.Hubblog.Interfaces.ActivityDataListener.java
com.donskifarrell.Hubblog.Interfaces.ArticleWebViewJsInterface.java
com.donskifarrell.Hubblog.Interfaces.DataProvider.java
com.donskifarrell.Hubblog.Interfaces.DialogListener.java
com.donskifarrell.Hubblog.Interfaces.MetadataTagListener.java
com.donskifarrell.Hubblog.Interfaces.OnSidebarListItemSelected.java
com.donskifarrell.Hubblog.Providers.DatabaseHelper.java
com.donskifarrell.Hubblog.Providers.DatabaseProvider.java
com.donskifarrell.Hubblog.Providers.FileSystemProvider.java
com.donskifarrell.Hubblog.Providers.GitHubProvider.java
com.donskifarrell.Hubblog.Providers.HubblogDataProvider.java
com.donskifarrell.Hubblog.Providers.SharedPreferencesProvider.java
com.donskifarrell.Hubblog.Providers.Data.Account.java
com.donskifarrell.Hubblog.Providers.Data.Article.java
com.donskifarrell.Hubblog.Providers.Data.MetadataTag.java
com.donskifarrell.Hubblog.Providers.Data.Site.java
com.github.kevinsawicki.wishlist.ActivityUtils.java
com.github.kevinsawicki.wishlist.AsyncLoader.java
com.github.kevinsawicki.wishlist.CursorAdapter.java
com.github.kevinsawicki.wishlist.DatabaseHelper.java
com.github.kevinsawicki.wishlist.DecodeBitmapTask.java
com.github.kevinsawicki.wishlist.EditTextUtils.java
com.github.kevinsawicki.wishlist.Gestures.java
com.github.kevinsawicki.wishlist.ImageViewBitmapTask.java
com.github.kevinsawicki.wishlist.Keyboard.java
com.github.kevinsawicki.wishlist.LightDialog.java
com.github.kevinsawicki.wishlist.LocationUtils.java
com.github.kevinsawicki.wishlist.MultiTypeAdapter.java
com.github.kevinsawicki.wishlist.OnDoubleTapAdapter.java
com.github.kevinsawicki.wishlist.SectionFinder.java
com.github.kevinsawicki.wishlist.SectionMultiTypeAdapter.java
com.github.kevinsawicki.wishlist.SectionSingleTypeAdapter.java
com.github.kevinsawicki.wishlist.SingleTypeAdapter.java
com.github.kevinsawicki.wishlist.SingleTypeCursorAdapter.java
com.github.kevinsawicki.wishlist.Toaster.java
com.github.kevinsawicki.wishlist.TypeAdapter.java
com.github.kevinsawicki.wishlist.TypefaceUtils.java
com.github.kevinsawicki.wishlist.ViewFinder.java
com.github.kevinsawicki.wishlist.ViewUpdater.java
com.github.kevinsawicki.wishlist.ViewUtils.java
com.github.mobile.Accounts.AccountAuthenticatorService.java
com.github.mobile.Accounts.AccountAuthenticator.java
com.github.mobile.Accounts.AccountClient.java
com.github.mobile.Accounts.AccountConstants.java
com.github.mobile.Accounts.AccountScope.java
com.github.mobile.Accounts.AccountUtils.java
com.github.mobile.Accounts.AuthenticatedUserLoader.java
com.github.mobile.Accounts.AuthenticatedUserTask.java
com.github.mobile.Accounts.DefaultClient.java
com.github.mobile.Accounts.GitHubAccount.java
com.github.mobile.Accounts.ScopeBase.java
com.github.mobile.Accounts.TwoFactorAuthActivity.java
com.github.mobile.Accounts.TwoFactorAuthClient.java
com.github.mobile.Accounts.TwoFactorAuthException.java
com.github.mobile.Persistence.AccountDataManager.java
com.github.mobile.Persistence.CacheHelper.java
com.github.mobile.Persistence.DatabaseCache.java
com.github.mobile.Persistence.OrganizationLoader.java
com.github.mobile.Persistence.OrganizationRepositories.java
com.github.mobile.Persistence.Organizations.java
com.github.mobile.Persistence.PersistableResource.java
com.github.mobile.Requests.RequestCodes.java
com.github.mobile.Requests.RequestFuture.java
com.github.mobile.Requests.RequestReader.java
com.github.mobile.Requests.RequestWriter.java
com.github.mobile.Utils.IssueFilter.java
com.github.mobile.Utils.ToastUtils.java
com.github.mobile.Utils.UserComparator.java
com.viewpagerindicator.CirclePageIndicator.java
com.viewpagerindicator.IconPageIndicator.java
com.viewpagerindicator.IconPagerAdapter.java
com.viewpagerindicator.IcsLinearLayout.java
com.viewpagerindicator.LinePageIndicator.java
com.viewpagerindicator.PageIndicator.java
com.viewpagerindicator.TabPageIndicator.java
com.viewpagerindicator.TitlePageIndicator.java
com.viewpagerindicator.UnderlinePageIndicator.java