( Uri uri )
| 938 | } |
| 939 | |
| 940 | private String extractFileName( Uri uri ) |
| 941 | { |
| 942 | if ( uri!=null ) { |
| 943 | if ( uri.equals(Uri.parse("file:///")) ) |
| 944 | return null; |
| 945 | else |
| 946 | return uri.getPath(); |
| 947 | } |
| 948 | return null; |
| 949 | } |
| 950 | |
| 951 | public void showHomeScreen() { |
| 952 | Intent intent = new Intent(Intent.ACTION_MAIN); |
no test coverage detected