I'm trying to style some programmatically created progressbars. I have some .xml made ones in which i use this style.
style="@android:style/Widget.DeviceDefault.ProgressBar.Large"
I'm trying but I can't figure out how to use this particular style for the programmatically made ones. I have been trying with this one:
android.R.attr.progressBarStyleLarge
Edit:Currently I'm trying
ArrayList<ProgressBar> progressArrayList = new ArrayList<>();
progressArrayList.add(new ProgressBar(getContext(), null ,android.R.style.Widget_DeviceDefault_ProgressBar_Large));
but they dissapear when I use the style like that.