All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.holoeverywhere.app.ContextThemeWrapperPlus Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version

package org.holoeverywhere.app;

import org.holoeverywhere.SystemServiceManager;
import org.holoeverywhere.SystemServiceManager.SuperSystemService;

import android.content.Context;
import android.view.ContextThemeWrapper;

public class ContextThemeWrapperPlus extends ContextThemeWrapper implements SuperSystemService {
    public ContextThemeWrapperPlus(Context base, int themeres) {
        super(base, themeres);
    }

    @Override
    public Object getSystemService(String name) {
        return SystemServiceManager.getSystemService(this, name);
    }

    @Override
    public Object superGetSystemService(String name) {
        return super.getSystemService(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy