// For Android 4.1+
      @SuppressWarnings("unused")
      public void openFileChooser(ValueCallback<Uri> uploadMsg,
        String acceptType, String capture) {
       openFileChooser(uploadMsg, "");
       uploadMessage = uploadMsg;
       Intent i = new Intent(Intent.ACTION_GET_CONTENT);
       i.addCategory(Intent.CATEGORY_OPENABLE);
       // i.setType("image/*");
       i.setType("*/*");
       startActivityForResult(Intent.createChooser(i, "File Chooser"),
         TestWebViewActivity.FILECHOOSER_RESULTCODE);
      }
	제가 jsp페이지를 잡아놓고 파일첨부를 하는데 폰안에서는 파일첨부하는 창이 안뜨네요.
	구글링을 하면서 코딩을 해봐도 답이 않나오네요.
	해결 방법없을까요. 질문 부탁 드리겠습니다.