I tried to solve this problem. And I got this:
ScrollView
- change background color
- change cacheColorHint color
- change theme
Extends ListView and make custom ListView
@Override
public int getSolidColor() {
return Color.rgb(0x30, 0x30, 0x30);
}
1 didn't work for me. So, I tried to do 2. But I can't find any methods with that name in parent class which is RecyclerView.
So, In this case, It seems like RecyclerView is different from ScrollView and ListView.
How can I change the color?