2

3 つの ActionBar タブを持つ Web アプリを作成しています。各タブは Web ビューをトリガーします。タブの 1 つで、その Web ビューの goBack アクションをトリガーするには、Android デバイスの戻るボタンが必要です。Fragment内のWebViewに「戻る」機能を追加する方法でblackbeltとnetineptによって提案されたものと同様のソリューションを試みていますか? 、しかし、次のエラーが表示されます-「メソッド canGoBack() は、FragmentTab3 型に対して未定義です」というエラーが MainActivity.java ファイルに表示されます。

これが私のコードです。私が間違っているかもしれないことを教えてください。

---MainActivity.java---

「メソッド canGoBack() は FragmentTab3 型に対して未定義です」

public class MainActivity extends SherlockFragmentActivity {

    ActionBar.Tab Tab1,Tab2,Tab3;
    Fragment fragmentTab1 = new FragmentTab1();
    Fragment fragmentTab2 = new FragmentTab2();
    Fragment fragmentTab3 = new FragmentTab3();


    @Override protected void onSaveInstanceState(Bundle outState){
        super.onSaveInstanceState(outState);
        int index = getSupportActionBar().getSelectedNavigationIndex();
        outState.putInt("selected_tab_index", index); 
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ActionBar actionBar = getSupportActionBar();

        // Hide Actionbar Icon
        actionBar.setDisplayShowHomeEnabled(false);

        // Hide Actionbar Title
        actionBar.setDisplayShowTitleEnabled(false);

        // Create Actionbar Tabs
        actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

        // Set Tab Icon and Titles
        Tab1 = actionBar.newTab().setText("Tab 1");
        Tab2 = actionBar.newTab().setText("Tab 2");
        Tab3 = actionBar.newTab().setText("Tab 3");


        // Set Tab Listeners
        Tab1.setTabListener(new TabListener(fragmentTab1));
        Tab2.setTabListener(new TabListener(fragmentTab2));
        Tab3.setTabListener(new TabListener(fragmentTab3));

        // Add tabs to actionbar
        actionBar.addTab(Tab1);
        actionBar.addTab(Tab2);
        actionBar.addTab(Tab3);

        if (savedInstanceState != null) {
            int index = savedInstanceState.getInt("selected_tab_index", 0);
            getSupportActionBar().setSelectedNavigationItem(index);
        }

    }

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
    }

    @Override
    public void onBackPressed() {
          Fragment webview = getSupportFragmentManager().findFragmentById(R.id.webview);
          if (webview instanceof FragmentTab3) {
                 boolean goback = ((FragmentTab3)webview).canGoBack();
                 if (!goback)
                   super.onBackPressed();
          }
    }    

}

---FragmentTab3.java---

public class FragmentTab3 extends SherlockFragment
{

    public WebView webView;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState)
    {
        View rootView = inflater.inflate(R.layout.fragmenttab3, container, false);

        webView = (WebView) rootView.findViewById(R.id.webview);
        webView.setBackgroundColor(0);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.setWebViewClient(new WebViewClient());
        webView.loadUrl("http://www.example.com");
        webView.requestFocusFromTouch();

        return rootView;
    }

}

---fragmenttab3.xml---

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <WebView  
        android:id="@+id/webview"
        android:tag="webview_tag"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1" />

</LinearLayout>
4

2 に答える 2

0

エラーが言うように、フラグメントにはcanGoBackというメソッドがありません。次の方法で実行できます。

public class FragmentTab3 extends SherlockFragment
 {
   /// your code

    public boolean canGoBack() {
        return webView != null && webView.canGoBack();
    }

}
于 2013-10-08T19:09:44.433 に答える