Path 를 받아와서
String mimeType = URLConnection.guessContentTypeFromName(Path);
if(mimeType == null)
{
mimeType = "*/*";
}
Uri u = Uri.parse(Path);
String []type = mimeType.split("/");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(u, type[0]+"/*");
mContext.startActivity(Intent.createChooser(intent,"연결프로그램"));
이 코드로 Path 에 있는 파일을 불어와서 씀니다.
그러면

이렇게 뜨는 데 실제로 Word 라던가 누르면 그 파일이 열리지는 않습니다.
저기 있는 웹을 눌러서 따로 불러내면 잘 실행 되구요.
혹시 더 추가해야 할 게 있는 겁니까?