안녕하세요
요세 안드로이드 웹뷰로 프로젝트 진행중인데요
웹뷰에서 다운로드 받을때 onDownloadStart 요함수를 오버라이드 해서 쓰는데요
파라미터중에 contentDisposition으로 filename가 넘어오더라구요
근데이 filename을 제가 임의로 조작하고싶은데
onDownloadStart안에서 조작하는거로는 변경이안돼네요
혹시 조작하는방법이 있을까요??
webView.setDownloadListener(new DownloadListener()
{
public void onDownloadStart(String url, String userAgent,String contentDisposition, String mimetype,long contentLength)
{
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
}
});