textdrawable
textdrawable copied to clipboard
TextDrawable implementation and sample use project
In TextDrawable: public int getOpacity() { return mTextPaint.getAlpha(); } Does not pass Android Inspection : Must be one of: PixelFormat.UNKNOWN, PixelFormat.TRANSLUCENT, PixelFormat.TRANSPARENT, PixelFormat.OPAQUE.
The color of the text does not update when used with a `ColorStateList`: ``` ``` ``` textDrawable.setTextColor(getResources.getColorStateList(R.color.highlight_text)); ``` This can be fixed by invalidating the view on state changed: ```...
java.lang.RuntimeException: Unable to start activity ComponentInfo{br.org.fbb.baldecheio/br.org.fbb.baldecheio.ListaCalculos}: java.lang.NullPointerException at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2184) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2233) at android.app.ActivityThread.access$800(ActivityThread.java:135) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:136) at android.app.ActivityThread.main(ActivityThread.java:5001) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:515) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)...