I'm working on an app that has an embedded web-page, and I'm using
webview for that purpose. The thing is, my embedded webpage has HTML5
databases, and I'm not being able to debug what's inside the databases
when running the app. I'm trying to get the usage quota, by using
getUsageForOrigin, and I'm doing it this way:
WebStorage.getInstance().getUsageForOrigin(browserInterno.getUrl(),
new ValueCallback<Long>() {
@Override
public void onReceiveValue(Long value) {
Log.v(Constants.LOG_WEB, "INTERNAL WEB DATABASE:
"+value);
}
});
The thing is, onReceiveValue never gets called because I never get
that Log in android logcat. I'm using an Android 2.2 device.
Please help
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en