Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CordovaWebView Error: org.apache.cordova.CordovaWebView cannot be cast to android.view.View

I've got some problems with Cordova 5.1.1 implementation on Android. I'm trying to embed a CordovaWebView in my application. I've followed all the instructions described in their official site, however I keep getting the error "org.apache.cordova.CordovaWebView cannot be cast to android.view.View". I've searched a lot for some help, but I couldn't find anything that could help me. Here's my code:

Activity:

public class CordovaTestActivity extends Activity implements CordovaInterface {

protected CordovaPlugin activityResultCallback = null;
protected boolean activityResultKeepRunning;
protected boolean keepRunning = true;
private final ExecutorService threadPool = Executors.newCachedThreadPool();
CordovaWebView cwv;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_cordova_test);
    cwv = (CordovaWebView) findViewById(R.id.tutorialView);
    Config.init(this);
    cwv.loadUrl(Config.getStartUrl());
}

@Override
public Activity getActivity() {
    return this;
}

@Override
public ExecutorService getThreadPool() {
    return threadPool;
}

@Override
public Object onMessage(String arg0, Object arg1) {
    return null;
}

@Override
public void setActivityResultCallback(CordovaPlugin plugin) {
    this.activityResultCallback = plugin;
}

@Override
public void startActivityForResult(CordovaPlugin command, Intent intent, int requestCode) {
     this.activityResultCallback = command;
     this.activityResultKeepRunning = this.keepRunning;

     if (command != null) {
         this.keepRunning = false;
     }

     super.startActivityForResult(intent, requestCode);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
     super.onActivityResult(requestCode, resultCode, intent);
     CordovaPlugin callback = this.activityResultCallback;
     if (callback != null) {
         callback.onActivityResult(requestCode, resultCode, intent);
     }
} }

xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.cordovatest.CordovaTestActivity" >

<org.apache.cordova.CordovaWebView
 android:id="@+id/tutorialView"
 android:layout_width="match_parent"
 android:layout_height="match_parent" />

</RelativeLayout>

config.xml

<widget id="com.example.hello" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<preference name="loglevel" value="DEBUG" />
<preference name="AndroidLaunchMode" value="singleTop" />
<name>Hello World</name>
<description>
    A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="[email protected]" href="http://cordova.io">
    Apache Cordova Team
</author>
<content src="index.html" />
<access origin="*" />
<preference name="useBrowserHistory" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="fullscreen" value="false" />
<preference name="webviewbounce" value="true" />
</widget>
like image 222
Wesley Santos Avatar asked Oct 31 '22 19:10

Wesley Santos


1 Answers

I know that I am too late answer this question but today I face this issue and try to find solution .

In 5.1.1 cordova implementation for Android, CordovaWebView converted from CustomwebView to interface and we can not use it in layout, this the reason application can't compile.

Another webview implementation provided by cordova know as SystemWebView under org.apache.cordova.engine package.

I don't know why cordova developer's converted cordovawebview to interface

like image 91
USKMobility Avatar answered Nov 15 '22 06:11

USKMobility