package com.helloworld;
import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.view.KeyEvent;
import android.content.Intent;
import android.net.MailTo;
import android.content.Context;
public class HelloWorld extends Activity
{
final Activity activity = this;
WebView webview;
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (webview != null && (keyCode == KeyEvent.KEYCODE_BACK) && webview.canGoBack()) {
webview.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.getWindow().requestFeature(Window.FEATURE_PROGRESS);
setContentView(R.layout.main);
webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().setUseWideViewPort(true);
webview.loadUrl("http://www.blahblah.org");
webview.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress)
{
activity.setTitle("Loading...");
activity.setProgress(progress * 100);
if(progress == 100)
activity.setTitle(R.string.app_name);
}
});
webview.setWebViewClient(new WebViewClient() {
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
{
// Handle the error
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
{
if(url.startsWith("mailto:")){
MailTo mt = MailTo.parse(url);
Intent i = newEmailIntent(activity.this, mt.getTo(), mt.getSubject(), mt.getBody(), mt.getCc());
startActivity(i);
view.reload();
return true;
}
view.loadUrl(url);
return true;
}
});
}
public static Intent newEmailIntent(Context context, String address, String subject, String body, String cc) {
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_EMAIL, new String[] { address });
intent.putExtra(Intent.EXTRA_TEXT, body);
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
intent.putExtra(Intent.EXTRA_CC, cc);
intent.setType("message/rfc822");
return intent;
}
}
上面的代码运行正常,除非单击mailto链接,设备信使打开并且不将mailto“body”放在信使的撰写部分。相同的mailto链接在设备Web浏览器中正常工作。任何想法,将不胜感激。谢谢!
答案 0 :(得分:0)
我的测试中遇到了类似的问题,
但事实证明使用text/plain
类型,
它试图发送短信。
我想你想改变两件事。
intent.setType("text/html");
但你也应该使用Intent.createChooser
。
startActivity(Intent.createChooser(intent, "Some prompt for the user:"));
特别是对于电子邮件,他们可能同时安装了android电子邮件应用和gmail应用。 或者他们可能没有安装能够发送HTML电子邮件的应用程序。
这解决了我在模拟器上遇到的问题,它一直在破坏。
以下是我工作的电子邮件发件人的完整代码。
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/html");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, EMAIL_TO);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, EMAIL_SUBJECT);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, EMAIL_TEXT);
startActivity(Intent.createChooser(emailIntent, "Send Email to the Author:"));
更新
再次阅读这个问题 你应该添加一些调试,确保它不是mailto解析错误。
String tag = "emaildebug";
Log.d(tag, "address: "+address);
Log.d(tag, "body: "+body);
Log.d(tag, "subject: "+subject);
Log.d(tag, "cc: "+cc);
答案 1 :(得分:0)