我想在Android应用程序中分页Web内容。例如,我使用Flipview显示网页内容的每一页,我不知道如何使用我创建的相同网页视图,加载网址显示在每个翻页视图页面上。
任何人都建议我!
感谢所有建议!
答案 0 :(得分:0)
使用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
希望这会对你有所帮助