Java tutorial
//package com.java2s; import android.os.Build; import android.widget.TextView; public class Main { public static void setTextAppearance(TextView textview, int resId) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { textview.setTextAppearance(resId); } else { //noinspection deprecation textview.setTextAppearance(textview.getContext(), resId); } } }