私はすべての投稿に行きましたが、それは私のために働いていません。助けてください。
Webビューでメールアカウントを開設しています。ですから、添付ファイルを開く機能が必要です。
wvA.setDownloadListener(new DownloadListener()
{
public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimeType,
long size)
{
Intent viewIntent = new Intent(Intent.ACTION_VIEW);
viewIntent.setDataAndType(Uri.parse(url), mimeType);
try
{
Log.i("Testing", "onDownloadStart");
startActivity(viewIntent);
}
catch (ActivityNotFoundException ex)
{
Log.w("Testing", "Couldn't find activity to view mimetype: " + mimeType);
}
}
});