1. 程式人生 > >按下實體back button 的事件

按下實體back button 的事件

接著上一篇 Android Intents with Chrome,我要寫一個功能,讓其他的程式或從 webview 開啟我的程式。

我的browsable 的 activity 被開啟後,按下畫面上的回上一頁,發生的事件和按實體的back button 不一致,原來是需要另外去 handle 一次。

You can handle it like this:

for API level 5 and greater

@Override
public void onBackPressed() {
    // your code.
}