2

我想让我的 webapp 看起来与原生应用程序尽可能相似,现在我才意识到顶部没有通知栏,并且 Android 后退按钮不会将您带到最后一个屏幕而是关闭应用程序。有人知道如何解决这个问题吗?

显现

<uses-sdk
    android:minSdkVersion="7"
    android:targetSdkVersion="16" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:hardwareAccelerated="true">
    <activity
        android:name="com.example.mywebapp.MainActivity"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

活动

public class MainActivity extends Activity {

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

    final String URL = "file:///android_asset/Compatibilidades/public_html/index.html";
    WebView myWebView = (WebView) this.findViewById(R.id.webView);
    myWebView.setWebViewClient(new MyWebViewClient());
    myWebView.getSettings().setJavaScriptEnabled(true);
    myWebView.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
    myWebView.getSettings().setRenderPriority(WebSettings.RenderPriority.HIGH);
    myWebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
    myWebView.loadUrl(URL);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
    return false;
}
}

布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">


<WebView
        android:id="@+id/webView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
/>

</LinearLayout>
4

2 回答 2

1

找到了解决办法,需要把这个参数放在AndroidManifest.xml中的activity中

<activity
    android:theme="@android:style/Theme.NoTitleBar">
于 2013-08-06T16:59:09.480 回答
0

为了支持后退按钮,您可以执行以下操作(来源):

public class MainActivity extends Activity {

    @Override
    public void onBackPressed() {
        if(mWebView.canGoBack()) {
            mWebView.goBack();
        } else {
            super.onBackPressed();
        }
    }
}
于 2014-07-04T19:13:16.610 回答