In My Case Used this Method:
public static float pxFromDp(float dp, Context mContext) {
return dp * mContext.getResources().getDisplayMetrics().density;
}
Here Set TextView's TextSize Programatically :
textView.setTextSize(pxFromDp(18, YourActivity.this));
Keep Enjoying:)