Example usage for android.widget ImageView subclass-usage

List of usage examples for android.widget ImageView subclass-usage

Introduction

In this page you can find the example usage for android.widget ImageView subclass-usage.

Usage

From source file tm.alashow.dotjpg.ui.view.TintedImageView.java

/**
 * Tintes drawable with given color
 */
public class TintedImageView extends ImageView {
    private int mTintColor = Color.parseColor("#212121");

From source file ru.tlrs.vincent.VincentView.java

/**
 * Copyright (C) 2016 Alexander Varakosov.
 *
 * 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

From source file org.chromium.chrome.browser.widget.ClipDrawableProgressBar.java

/**
 * An alternative progress bar implemented using ClipDrawable for simplicity and performance.
 */
public class ClipDrawableProgressBar extends ImageView {
    /**
     * Structure that has complete {@link ClipDrawableProgressBar} drawing information.

From source file com.hakerjack.experiments.SwipeRefreshLayoutIndicator.java

/**
 * The refresh indicator at the top of the {@link CustomSwipeRefreshLayout} that appears when doing pull-to-refresh
 * Modified from {@link android.support.v4.widget.CircleImageView}
 *
 * Created by kjia on 9/29/15.
 */

From source file im.vector.view.VectorCircularImageView.java

/**
 * Display a circular image.
 */
public class VectorCircularImageView extends ImageView {

    private static final String LOG_TAG = "VCirImageView";

From source file com.quinsoft.zeidon.android.ZeidonImageView.java

/**
 * @author dgc
 *
 */
public class ZeidonImageView extends ImageView implements ZeidonDisplayView {
    private final ZeidonAndroidViewDelegate viewDelegate = new ZeidonAndroidViewDelegate();

From source file com.hiyjeain.android.DevBase.widget.CircleImageView.java

public class CircleImageView extends ImageView {

    private static final int KEY_SHADOW_COLOR = 0x1E000000;
    private static final int FILL_SHADOW_COLOR = 0x3D000000;
    // PX
    private static final float X_OFFSET = 0f;

From source file liam.franco.selene.ui.ToolsBarImageView.java

public class ToolsBarImageView extends ImageView {
    @ColorInt
    private int defaultTint;

    public ToolsBarImageView(Context context) {
        super(context);

From source file com.jinzht.pro.swipyrefreshlayout.CircleImageView.java

/**
 * Private class created to work around issues with AnimationListeners being
 * called before the animation is actually complete and support shadows on older
 * platforms.
 *
 * @hide

From source file com.rk.lib.view.SVGView.java

public class SVGView extends ImageView {

    private static LruCache<Integer, Drawable> memoryCache;
    private Context mContext;
    private int resourceId;
    private boolean isSvgResource;