0

Android アプリケーションで Web のコンテンツをページングしたい。たとえば、Flipview を使用して Web コンテンツの各ページを表示していますが、作成した同じ WebView を使用して URL を読み込んで各 Flipview ページに表示する方法がわかりません。

誰でも私に提案します!

すべての提案をありがとう!

4

1 に答える 1

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

これがあなたを助けることを願っています

于 2013-04-01T11:27:41.600 に答える