Skip navigation links
A B C D G H I M O P R S V 

A

abandonFocus(Context, AudioManager.OnAudioFocusChangeListener) - Static method in class com.matthewtamlin.android_utilities_library.helpers.AudioFocusHelper
Abandons audio focus from the supplied listener.
add(T) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
add(int, T) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
addAll(Collection<? extends T>) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
addAll(int, Collection<? extends T>) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
addOnItemAddedListener(ArrayListWithCallbacks.OnItemAddedListener) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Adds an OnItemAddedListener to this ArrayListWithCallbacks.
addOnItemRemovedListener(ArrayListWithCallbacks.OnItemRemovedListener) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Adds an OnItemRemovedListener to this ArrayListWithCallbacks.
addOnListChangedListener(ArrayListWithCallbacks.OnListChangedListener) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Adds an OnListChangedListener to this ArrayListWithCallbacks.
addOnListClearedListener(ArrayListWithCallbacks.OnListClearedListener) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Adds an OnListClearedListener to this ArrayListWithCallbacks.
ArrayListWithCallbacks<T> - Class in com.matthewtamlin.android_utilities_library.collections
An ArrayList which dispatches callback events to registered listeners whenever the Collection is modified.
ArrayListWithCallbacks() - Constructor for class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Constructs a new instance of ArrayListWithCallbacks.
ArrayListWithCallbacks(Collection<T>) - Constructor for class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Constructs a new instance of ArrayListWithCallbacks containing the elements of the specified collection.
ArrayListWithCallbacks.OnItemAddedListener - Interface in com.matthewtamlin.android_utilities_library.collections
Interface definition for callbacks to be invoked whenever an item is added to an ArrayListWithCallbacks.
ArrayListWithCallbacks.OnItemRemovedListener - Interface in com.matthewtamlin.android_utilities_library.collections
Interface definition for callbacks to be received whenever an item is removed from an ArrayListWithCallbacks.
ArrayListWithCallbacks.OnListChangedListener - Interface in com.matthewtamlin.android_utilities_library.collections
Interface definition for callbacks to be received whenever an ArrayListWithCallbacks is modified.
ArrayListWithCallbacks.OnListClearedListener - Interface in com.matthewtamlin.android_utilities_library.collections
Interface definition for callbacks to be received whenever an ArrayListWithCallbacks is cleared.
AudioFocusHelper - Class in com.matthewtamlin.android_utilities_library.helpers
Static utility class for obtaining and abandoning audio focus.

B

BitmapHelper - Class in com.matthewtamlin.android_utilities_library.helpers
Static utility class for decoding Bitmap images efficiently.
blendColors(int, int, float) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ColorHelper
Blends two colours to produce a single output colour.

C

clear() - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
ColorHelper - Class in com.matthewtamlin.android_utilities_library.helpers
Static utility class for working with colors.
com.matthewtamlin.android_utilities_library.collections - package com.matthewtamlin.android_utilities_library.collections
 
com.matthewtamlin.android_utilities_library.helpers - package com.matthewtamlin.android_utilities_library.helpers
 

D

decodeSampledBitmapFromByteArray(byte[], int, int, int, int) - Static method in class com.matthewtamlin.android_utilities_library.helpers.BitmapHelper
Efficiently decodes an image from a byte array.
decodeSampledBitmapFromFile(File, int, int) - Static method in class com.matthewtamlin.android_utilities_library.helpers.BitmapHelper
Efficiently decodes an image from a File.
decodeSampledBitmapFromResource(Resources, int, int, int) - Static method in class com.matthewtamlin.android_utilities_library.helpers.BitmapHelper
Efficiently loads an image from a resource.
DimensionHelper - Class in com.matthewtamlin.android_utilities_library.helpers
A helper class for converting complex units to pixels.
dpToPx(int, Context) - Static method in class com.matthewtamlin.android_utilities_library.helpers.DimensionHelper
Converts a dimension from display-independent pixels (dp) to pixels (px).

G

getAccentColor(Context, int) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ColorHelper
Extracts the accent color from a theme.
getPrimaryColor(Context, int) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ColorHelper
Extracts the primary color from a theme.
getPrimaryDarkColor(Context, int) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ColorHelper
Extracts the primary dark color from a theme.
getScreenHeight(WindowManager) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper
Returns the absolute height of this device's screen, measured in pixels.
getScreenSize(Resources) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper
 
getScreenWidth(WindowManager) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper
Returns the absolute width of this device's screen, measured in pixels.

H

hideStatusBar(Window) - Static method in class com.matthewtamlin.android_utilities_library.helpers.StatusBarHelper
Hides the status bar and allows views to draw behind it.

I

inToPx(float, Context) - Static method in class com.matthewtamlin.android_utilities_library.helpers.DimensionHelper
Converts a dimension from inches (in) to pixels (px).

M

mmToPx(float, Context) - Static method in class com.matthewtamlin.android_utilities_library.helpers.DimensionHelper
Converts a dimension from millimetres (mm) to pixels (px).

O

onItemAdded(ArrayListWithCallbacks, Object, int) - Method in interface com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks.OnItemAddedListener
Invoked whenever an item is added to an ArrayListWithCallbacks which this listener is registered to.
onItemRemoved(ArrayListWithCallbacks, Object, int) - Method in interface com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks.OnItemRemovedListener
Invoked whenever an item is removed from an ArrayListWithCallbacks which this listener is registered to.
onListCleared(ArrayListWithCallbacks) - Method in interface com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks.OnListClearedListener
Invoked whenever an ArrayListWithCallbacks which this listener is registered to is cleared.

P

permissionsAreGranted(Context, String[]) - Static method in class com.matthewtamlin.android_utilities_library.helpers.PermissionsHelper
Determines if the supplied Context has been granted the specified permissions.
PermissionsHelper - Class in com.matthewtamlin.android_utilities_library.helpers
Static utility for querying permission status.
ptToPx(float, Context) - Static method in class com.matthewtamlin.android_utilities_library.helpers.DimensionHelper
Converts a dimension from points (pt) to pixels (px).

R

remove(int) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
remove(Object) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
removeAll(Collection<?>) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
removeOnItemAddedListener(ArrayListWithCallbacks.OnItemAddedListener) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Removes an OnItemAddedListener from this ArrayListWithCallbacks.
removeOnItemRemovedListener(ArrayListWithCallbacks.OnItemRemovedListener) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Removes an OnItemRemovedListener from this ArrayListWithCallbacks.
removeOnListChangedListener(ArrayListWithCallbacks.OnListChangedListener) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Removed an OnListChangedListener from this ArrayListWithCallbacks.
removeOnListClearedListener(ArrayListWithCallbacks.OnListClearedListener) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
Removes an OnListClearedListener from this ArrayListWithCallbacks.
requestStreamMusicFocus(Context, AudioManager.OnAudioFocusChangeListener) - Static method in class com.matthewtamlin.android_utilities_library.helpers.AudioFocusHelper
Requests stream music audio focus for the supplied listener.
retainAll(Collection<?>) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 

S

screenIsLarge(Resources) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper
Determines if the device configuration specifies the screen size as large, as specified in Configuration.
screenIsNormal(Resources) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper
Determines if the device configuration specifies the screen size as normal, as specified in Configuration.
screenIsSmall(Resources) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper
Determines if the device configuration specifies the screen size as small, as specified in Configuration.
screenIsUndefined(Resources) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper
Determines if the device configuration specifies the screen size as undefined, as specified in Configuration.
screenIsXLarge(Resources) - Static method in class com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper
Determines if the device configuration specifies the screen size as extra-large, as specified in Configuration.
ScreenSizeHelper - Class in com.matthewtamlin.android_utilities_library.helpers
Static utility class for querying the screen size.
ScreenSizeHelper.ScreenSize - Enum in com.matthewtamlin.android_utilities_library.helpers
Enumerates the possible screen sizes, as specified in Configuration.
SemiFullScreenHelper - Class in com.matthewtamlin.android_utilities_library.helpers
Deprecated.
set(int, T) - Method in class com.matthewtamlin.android_utilities_library.collections.ArrayListWithCallbacks
 
setSemiFullScreen(Window) - Static method in class com.matthewtamlin.android_utilities_library.helpers.SemiFullScreenHelper
Deprecated.
showStatusBar(Window, int) - Static method in class com.matthewtamlin.android_utilities_library.helpers.StatusBarHelper
Shows the status bar and prevents view from drawing behind it.
showStatusBar(Window) - Static method in class com.matthewtamlin.android_utilities_library.helpers.StatusBarHelper
Shows the status bar and prevents view from drawing behind it.
spToPx(float, Context) - Static method in class com.matthewtamlin.android_utilities_library.helpers.DimensionHelper
Converts a dimension from scaled pixels (sp) to pixels (px).
StatusBarHelper - Class in com.matthewtamlin.android_utilities_library.helpers
A utility class for hiding and showing the status bar.
StatusBarHelper() - Constructor for class com.matthewtamlin.android_utilities_library.helpers.StatusBarHelper
 

V

valueOf(String) - Static method in enum com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper.ScreenSize
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.matthewtamlin.android_utilities_library.helpers.ScreenSizeHelper.ScreenSize
Returns an array containing the constants of this enum type, in the order they are declared.
A B C D G H I M O P R S V 
Skip navigation links