SlantedTextView icon indicating copy to clipboard operation
SlantedTextView copied to clipboard

Android slanted TextView.

Results 2 SlantedTextView issues
Sort by recently updated
recently updated
newest added

extend from TextView and override the draw method: ``` Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); public void draw(Canvas canvas) { RectF rect = new RectF(ShrinkX, ShrinkY, getMeasuredWidth() - ShrinkX, getMeasuredHeight() -...

Hello i added the possibility to change the font type of your text as you want . it's so simple like this : SlantedTextView stv = (SlantedTextView) findViewById(R.id.test); Typeface plain...