What is the default color of a ListView divider line?

Viewed 19746

Currently I am using this code to see the divider lines:

medalsList.setDivider(new ColorDrawable(0x99F10529));
medalsList.setDividerHeight(1);

What is the default RGB color (as shown in the code above) used on a ListView that hasn't had its divider lines changed?

2 Answers
Related