Here the solution :
in the plugin directory : \wp-content\plugins\admin-column-view
edit this file : admin-column-view.php
the line 38 is :
foreach ($post_types as $post_type => $post_type_obj) {
put this 3 lines below the line 38 :
$exclude = array('acf');
if( TRUE === in_array( $post_type_obj->name, $exclude ) )
continue;
Hope it helps !