Example usage for android.support.v4.view LayoutInflaterFactory interface-usage

List of usage examples for android.support.v4.view LayoutInflaterFactory interface-usage

Introduction

In this page you can find the example usage for android.support.v4.view LayoutInflaterFactory interface-usage.

Usage

From source file com.github.shareme.blackandroids.greenandroid.viewdecorator.DecoratingLayoutInflaterFactory.java

class DecoratingLayoutInflaterFactory implements LayoutInflaterFactory {
    private ViewDecorator viewDecorator;
    private ViewFactory viewFactory;

    public DecoratingLayoutInflaterFactory(ViewFactory viewFactory, ViewDecorator viewDecorator) {
        this.viewDecorator = viewDecorator;

From source file com.github.shareme.gwsmaterialuikit.library.viewdecorator.DecoratingLayoutInflaterFactory.java

class DecoratingLayoutInflaterFactory implements LayoutInflaterFactory {
    private ViewDecorator viewDecorator;
    private ViewFactory viewFactory;

    public DecoratingLayoutInflaterFactory(ViewFactory viewFactory, ViewDecorator viewDecorator) {
        this.viewDecorator = viewDecorator;

From source file io.github.rockerhieu.emojiconize.EmojiconLayoutInflaterFactory.java

/**
 * @author Hieu Rocker (rockerhieu@gmail.com)
 */
class EmojiconLayoutInflaterFactory implements LayoutInflaterFactory {
    private final Emojiconize.Builder builder;

From source file com.github.fountaingeyser.typefacecompat.FactoryTypefaceCompat.java

public class FactoryTypefaceCompat implements LayoutInflaterFactory {

    private LayoutInflaterFactory mBaseFactory;

    private FactoryTypefaceCompat(Context context) {
        try {

From source file com.tr4android.support.extension.typeface.TypefaceCompatFactory.java

/**
 * This Class is a custom {@link LayoutInflaterFactory} that catches all (sub)classes of TextView
 * during inflation and then takes care of reading the fontFamily and style attribute
 * and loading the associated typeface. This needs to be installed in your
 * {@link android.app.Activity#onCreate(Bundle) onCreate()} method <b>before</b> the call to super.onCreate().
 *

From source file me.henrytao.mdcore.core.MdLayoutInflaterFactory.java

/**
 * Created by henrytao on 4/27/16.
 */
public class MdLayoutInflaterFactory implements LayoutInflaterFactory {

    private final AppCompatDelegate mDelegate;

From source file nya.miku.wishmaster.ui.theme.CustomThemeHelper.java

public class CustomThemeHelper implements LayoutInflaterFactory {
    private static final String TAG = "CustomThemeHelper";
    private static final String[] CLASS_PREFIX_LIST = new String[] { "android.widget.", "android.webkit.",
            "android.app.", "android.view." };
    private static final Class<?>[] CONSTRUCTOR_SIGNATURE = new Class[] { Context.class, AttributeSet.class };
    private static final HashMap<String, Constructor<? extends View>> CONSTRUCTOR_MAP = new HashMap<>();

From source file com.nttec.everychan.ui.theme.CustomThemeHelper.java

public class CustomThemeHelper implements LayoutInflaterFactory {
    private static final String TAG = "CustomThemeHelper";
    private static final String[] CLASS_PREFIX_LIST = new String[] { "android.widget.", "android.webkit.",
            "android.app.", "android.view." };
    private static final Class<?>[] CONSTRUCTOR_SIGNATURE = new Class[] { Context.class, AttributeSet.class };
    private static final HashMap<String, Constructor<? extends View>> CONSTRUCTOR_MAP = new HashMap<>();

From source file org.mariotaku.twidere.util.ThemedLayoutInflaterFactory.java

/**
 * Created by mariotaku on 15/4/22.
 */
public class ThemedLayoutInflaterFactory implements LayoutInflaterFactory {

    private static final String[] sCustomViewPrefixWhiteList = { "org.mariotaku.twidere.view" };

From source file android.support.v7.app.AppCompatDelegateImplV7.java

class AppCompatDelegateImplV7 extends AppCompatDelegateImplBase
        implements MenuBuilder.Callback, LayoutInflaterFactory {

    private DecorContentParent mDecorContentParent;
    private ActionMenuPresenterCallback mActionMenuPresenterCallback;
    private PanelMenuPresenterCallback mPanelMenuPresenterCallback;