I am using the integrated API for file picker in Andoid like so:
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("*/*");
startActivityForResult(intent, 42);
Everything is fine when it comes to functionality but the color of the bar of this default activity is BLUE and I was wondering how can I change it?