.nemo:hover {
color:white;
width:100%;
background-color:black;
}
String localUri = "/storage/emulated/0/Download/car.jpg";
File file = new File(localUri);
Log.d(TAG, "file:///storage/emulated/0/Download/car.jpg" + " - "
+ Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS));
Uri contentUri = FileProvider.getUriForFile(this, this.getApplicationContext().getPackageName()
+ ".provider", file);
Intent openFileIntent = new Intent(Intent.ACTION_VIEW);
openFileIntent.setDataAndTypeAndNormalize(contentUri, "image/*");
openFileIntent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
openFileIntent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION | Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(openFileIntent);