Daniel Banks

Results 1 issues of Daniel Banks

I create a text paint variable as per the sample ``` Typeface typeface = Typeface.createFromAsset(activity.getAssets(), "fonts/Vollkorn-Regular.otf"); paint = new TextPaint(Paint.ANTI_ALIAS_FLAG); paint.setTypeface(typeface); paint.setTextAlign(Paint.Align.LEFT); ``` I then set this to my current...

bug