Feature Request P4
Status Update
Comments
ja...@google.com <ja...@google.com>
dh...@motorolasolutions.com <dh...@motorolasolutions.com> #2
I was just trying to figure how to create a feature request for this.
We have created something to accomplish by using the androidx source code and modifying a couple lines to expose the classes we need (VectorDrawableCompat.VFullPath and VectorDrawableCompat.VGroup).
It seems similar to what is accomplished inhttps://www.google.com/url?q=https://github.com/devendroid/VectorChildFinder&sa=D&usg=AFQjCNGs1K6LGKbjq7zmX7fjG0lJj4Grxw
The access of these classes allows us to manipulate fillColor, fillAlpha, strokeAlpha, strokeWidth by group names. This is nice and all, but maintainability is tough as we have to copy modified androidx source code into our Android Studio app project and when future fixes come in from androidx.VectorDrawable, this becomes difficult to pull new features and bugfixes.
I would like to contribute to this feature request but according to the README: "New features to existing libraries if the feature request bug has been approved by an AndroidX team member."
If one of the AndroidX team members can take a look at this, then I can start work on it. It is only a few line changes to expose the classes required to accomplish this
We have created something to accomplish by using the androidx source code and modifying a couple lines to expose the classes we need (VectorDrawableCompat.VFullPath and VectorDrawableCompat.VGroup).
It seems similar to what is accomplished in
The access of these classes allows us to manipulate fillColor, fillAlpha, strokeAlpha, strokeWidth by group names. This is nice and all, but maintainability is tough as we have to copy modified androidx source code into our Android Studio app project and when future fixes come in from androidx.VectorDrawable, this becomes difficult to pull new features and bugfixes.
I would like to contribute to this feature request but according to the README: "New features to existing libraries if the feature request bug has been approved by an AndroidX team member."
If one of the AndroidX team members can take a look at this, then I can start work on it. It is only a few line changes to expose the classes required to accomplish this
ar...@google.com <ar...@google.com>
lb...@gmail.com <lb...@gmail.com> #3
Any news about it?
It's 2023 already, and it's actually a useful feature...
Is it really just a matter of making some functions public?
It's 2023 already, and it's actually a useful feature...
Is it really just a matter of making some functions public?
da...@gmail.com <da...@gmail.com> #5
any updates? please do something about this issue
Description
I would like to change the color of a specific path in my VectorDrawable programmatically.
So that I can avoid adding multiple copies of the same drawable to my app.
VectorDrawableCompat has the capability to change the color of individual paths but it's not publically accessible. There are 3rd party libraries that copy and expose the API to achieve this but It would be great if the API officially supported.