제가 하고자 하는 목적은..

삼성어플 중 기본적으로 내장되어 있는 PDF Viewer(Quick Office)에 문서를 열고 그 위에 작은 버튼을 띄우고자합니다.
(가지고 있는게 삼성폰이라...)

그래서, 일단 다른 외부 어플을 제가 만든 어플 안에 띄우려고 합니다.

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);

Uri uri = Uri.parse("file:///sdcard/test.pdf");
intent.setDataAndType(uri,"application/pdf");
intent.putExtra(intent.EXTRA_STREAM, uri);

Window w = mLocalActivityManager.startActivity("1", intent);                 <=== 여기서 죽어버리네요...
View wd = w != null ? w.getDecorView() : null;
mContent.removeAllViews();
mContent.addView(wd, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT));

원래 외부 어플은 이렇게 못 가져오나요??