我想在 android 应用程序中分页 web 的内容。例如,我使用 Flipview 来显示网页内容的每一页,但我不知道如何使用我创建的同一个 webview、加载的 url 来显示在每个 Flipview 页面上。
任何人都建议我!
感谢所有建议!
我想在 android 应用程序中分页 web 的内容。例如,我使用 Flipview 来显示网页内容的每一页,但我不知道如何使用我创建的同一个 webview、加载的 url 来显示在每个 Flipview 页面上。
任何人都建议我!
感谢所有建议!
使用 webview.cangoback() 属性。
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
// Check if the key event was the Back button and if there's history
if ((keyCode == KeyEvent.KEYCODE_BACK) && myWebView.canGoBack()) {
myWebView.goBack();
return true;
}
// If it wasn't the Back key or there's no web page history, bubble up to the default
// system behavior (probably exit the activity)
return super.onKeyDown(keyCode, event);
}
更多详情请访问。http://developer.android.com/guide/webapps/webview.html
希望对你有帮助