Webview で ActionBar を有効にするにはどうすればよいでしょうか。私の現在のコードは、Web ブラウザーにページをロードするために直接進み、他のすべてのアクティビティ ロジックをスキップしますが、その理由はわかりません。
主な活動
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
ActionBar actionBar = getSupportActionBar();
actionBar.setTitle("My Page");
actionBar.setDisplayShowHomeEnabled(false);
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.loadUrl(http://www.google.com);
}
XML ファイル
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="5dip"
/>
</LinearLayout>
また、Web ビューを表示するダイアログを作成しようとしましたが、それも失敗しました。ありがとう!