ayemyatmon
Results
2
comments of
ayemyatmon
Thank you, I’ve already found solution like you said 😁. indicator.setContentview() really worked well.
@Umar431497 @paul-man In my case, I did like this: In java, > final LayoutInflater factory = getLayoutInflater(); final View background = factory.inflate(R.layout.custom_indicator, null); indicatorBg = background.findViewById(R.id.relative); indicatorText = background.findViewById(R.id.isb_progress); seekBar.getIndicator().setContentView(background);...