MaterialShowcaseView icon indicating copy to clipboard operation
MaterialShowcaseView copied to clipboard

Added support for changing font size

Open amodkanthe opened this issue 4 years ago • 0 comments

Support for changing font size

 new MaterialShowcaseView.Builder(getActivity())
                        .setTarget(mAirportNameTextView)
                        .setDismissOnTouch(true)
                        .setTitleTextSize(TypedValue.COMPLEX_UNIT_SP,18)
                        .setContentTextSize(TypedValue.COMPLEX_UNIT_SP,16)
                        .setTitleText(getString(R.string.coach_change_airport_primary))
                        .setContentText(getString(R.string.coach_change_airport_scondary))
                        .setMaskColour(getColor(R.color.coachAccentTrans))
                        .build()

amodkanthe avatar May 25 '20 19:05 amodkanthe