Skip to content

Instantly share code, notes, and snippets.

@kalaiselvan369
Last active November 26, 2018 05:47
Show Gist options
  • Save kalaiselvan369/32e5437282380f398075a48eb0f38be1 to your computer and use it in GitHub Desktop.
Save kalaiselvan369/32e5437282380f398075a48eb0f38be1 to your computer and use it in GitHub Desktop.
Frequently used android functions.
Usage 1:
ContextCompat.getColor(context, R.color.color_name)
Usage 2:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
yourTitle.setTextColor(getActivity().getResources().getColor(android.R.color.white, getActivity().getTheme()));
}else {
yourTitle.setTextColor(getActivity().getResources().getColor(android.R.color.white));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment