有没有办法从ProgressDialog.java类中获取“mProgress”对象?
我想将不确定的微调器的颜色设置为白色并保持相同的android风格。我见过使用样式的解决方案,但没有一个真正符合标准。我希望一切都与它完全相同,只是颜色为白色。
我想要mProgress对象的原因是我可以使用下面的代码:
mProgressBar.getIndeterminateDrawable().setColorFilter(new LightingColorFilter(0xFF000000, 0xFFFFFF));
答案 0 :(得分:0)
发现它!
ProgressDialog progress = new ProgressDialog(this);
AlertDialog alert = progress; // not sure if you need this bit, required for what I do
ProgressBar prog = (ProgressBar)progress.findViewById(android.R.id.progress);
prog.getIndeterminateDrawable().setColorFilter(new LightingColorFilter(0xFF000000, 0xFFFFFF));