Back to project page ponyville-live-android.
The source code is released under:
Apache License
If you think the Android project ponyville-live-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ponyvillelive.app.ui; /* www . j a v a2 s . co m*/ import android.content.SharedPreferences; import com.ponyvillelive.app.prefs.AnimationSpeed; import com.ponyvillelive.app.prefs.BooleanPreference; import com.ponyvillelive.app.prefs.IntPreference; import com.ponyvillelive.app.prefs.PicassoDebugging; import com.ponyvillelive.app.prefs.PixelGridEnabled; import com.ponyvillelive.app.prefs.PixelRatioEnabled; import com.ponyvillelive.app.prefs.ScalpelEnabled; import com.ponyvillelive.app.prefs.ScalpelWireframeEnabled; import com.ponyvillelive.app.prefs.SeenDebugDrawer; import javax.inject.Singleton; import dagger.Module; import dagger.Provides; /** * Provides injector for the debug UI functions */ @Module( injects = { MainActivity.class, DebugAppContainer.class }, complete = false, library = true, overrides = true ) public class DebugUiModule { private static final int DEFAULT_ANIMATION_SPEED = 1; // 1x (normal) speed. private static final boolean DEFAULT_PICASSO_DEBUGGING = false; // Debug indicators displayed private static final boolean DEFAULT_PIXEL_GRID_ENABLED = false; // No pixel grid overlay. private static final boolean DEFAULT_PIXEL_RATIO_ENABLED = false; // No pixel ratio overlay. private static final boolean DEFAULT_SCALPEL_ENABLED = false; // No crazy 3D view tree. private static final boolean DEFAULT_SCALPEL_WIREFRAME_ENABLED = false; // Draw views by default. private static final boolean DEFAULT_SEEN_DEBUG_DRAWER = false; // Show debug drawer first time. @Provides @Singleton AppContainer provideAppContainer(DebugAppContainer appContainer) { return appContainer; } @Provides @Singleton @AnimationSpeed IntPreference provideAnimationSpeed(SharedPreferences preferences) { return new IntPreference(preferences, "debug_animation_speed", DEFAULT_ANIMATION_SPEED); } @Provides @Singleton @PicassoDebugging BooleanPreference providePicassoDebugging(SharedPreferences preferences) { return new BooleanPreference(preferences, "debug_picasso_debugging", DEFAULT_PICASSO_DEBUGGING); } @Provides @Singleton @PixelGridEnabled BooleanPreference providePixelGridEnabled(SharedPreferences preferences) { return new BooleanPreference(preferences, "debug_pixel_grid_enabled", DEFAULT_PIXEL_GRID_ENABLED); } @Provides @Singleton @PixelRatioEnabled BooleanPreference providePixelRatioEnabled(SharedPreferences preferences) { return new BooleanPreference(preferences, "debug_pixel_ratio_enabled", DEFAULT_PIXEL_RATIO_ENABLED); } @Provides @Singleton @SeenDebugDrawer BooleanPreference provideSeenDebugDrawer(SharedPreferences preferences) { return new BooleanPreference(preferences, "debug_seen_debug_drawer", DEFAULT_SEEN_DEBUG_DRAWER); } @Provides @Singleton @ScalpelEnabled BooleanPreference provideScalpelEnabled(SharedPreferences preferences) { return new BooleanPreference(preferences, "debug_scalpel_enabled", DEFAULT_SCALPEL_ENABLED); } @Provides @Singleton @ScalpelWireframeEnabled BooleanPreference provideScalpelWireframeEnabled(SharedPreferences preferences) { return new BooleanPreference(preferences, "debug_scalpel_wireframe_drawer", DEFAULT_SCALPEL_WIREFRAME_ENABLED); } }