X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/c88843916e84118f8ef4ce691f38bc443fca1e5f..37297fb7a9085d10c7a2c34d846f3b7088c30929:/src/com/owncloud/android/ui/dialog/SsoWebView.java diff --git a/src/com/owncloud/android/ui/dialog/SsoWebView.java b/src/com/owncloud/android/ui/dialog/SsoWebView.java new file mode 100644 index 00000000..3a71139d --- /dev/null +++ b/src/com/owncloud/android/ui/dialog/SsoWebView.java @@ -0,0 +1,40 @@ +/* ownCloud Android client application + * Copyright (C) 2012-2013 ownCloud Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2, + * as published by the Free Software Foundation. + * + * This program 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 this program. If not, see . + * + */ + +package com.owncloud.android.ui.dialog; + +import android.content.Context; +import android.util.AttributeSet; +import android.webkit.WebView; + +public class SsoWebView extends WebView { + + public SsoWebView(Context context) { + super(context); + } + + public SsoWebView(Context context, AttributeSet attr) { + super(context, attr); + } + + @Override + public boolean onCheckIsTextEditor () { + return false; + } + +} +