Back to project page wger-android.
The source code is released under:
GNU General Public License
If you think the Android project wger-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * This file is part of wger Android./* w w w . j av a 2s .c o m*/ * * wger Android is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * wger Android is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with wger Android. If not, see <http://www.gnu.org/licenses/>. */ package de.wger; import android.content.Intent; import android.net.MailTo; import android.net.Uri; import android.webkit.WebView; import android.webkit.WebViewClient; class WgerWebViewClient extends WebViewClient { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { /* * Special attention needed for mailto links, should open with * the email app */ if(url.startsWith("mailto:")){ MailTo mt = MailTo.parse(url); Intent i = new Intent(Intent.ACTION_SEND); i.setType("message/rfc822"); i.putExtra(Intent.EXTRA_EMAIL, new String[]{mt.getTo()}); i.putExtra(Intent.EXTRA_SUBJECT, mt.getSubject()); i.putExtra(Intent.EXTRA_CC, mt.getCc()); i.putExtra(Intent.EXTRA_TEXT, mt.getBody()); view.getContext().startActivity(i); view.reload(); return true; } /* * Load all external links with the system's browser */ if (Uri.parse(url).getHost().equals("wger.de")) { return false; } Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); view.getContext().startActivity(intent); return true; } }