I have SeekBar with custom drawable. Progress element is not rendered from left side exactly but it is moved to right. How can I avoid this?
If your choices of color has a limit and is predefined. You can try to add XML files with Seekbars using different themes.
Something like this:
themed_seekbar_one.xml
themed_seekbar_two.xml
You can then inflate does views programatically like this:
SeekBar seekbar = (SeekBar)getLayoutInflater().inflate(R.layout.themed_seekbar_xxx, null);