Cannot override the final method from SherlockFragmentActivity

简介: 调用ActionBarSherlock后页面找不到onCreateOptionsMenu报错 com.actionbarsherlock.app.SherlockFragmentActivity.onCreateOptionsMenu  Cannot override the final met...

调用ActionBarSherlock后页面找不到onCreateOptionsMenu报错

com.actionbarsherlock.app.SherlockFragmentActivity.onCreateOptionsMenu 

Cannot override the final method from SherlockFragmentActivity

@Override
public boolean onOptionsItemSelected(MenuItem item) 
{
    int id = item.getItemId();

    if (id == android.R.id.home) {

        rbmView.toggleMenu();

        return true;

    } else {
        return super.onOptionsItemSelected(item);
    }
}

网上的一个方法是将MenuItem替换为com.actionbarsherlock.view.MenuItem

 

目录
相关文章
|
6月前
|
消息中间件 Kubernetes NoSQL
c++11 关键字 override 与 final
c++11 关键字 override 与 final
|
3月前
|
Linux 数据安全/隐私保护
[HZNUCTF 2023 final]ezgo
[HZNUCTF 2023 final]ezgo
40 0
|
6月前
|
PHP
PHP public、protected、private、static、abstract、final、interface、implements 区别对比
PHP public、protected、private、static、abstract、final、interface、implements 区别对比
74 0
|
6月前
|
程序员
final
final
28 0
1. Final 有什么用?
Final(最终)一词可以在不同的语境中有不同的用途和含义。以下是对于"Final"的一般解释,以及一些常见的用途
94 0
override 指示符
override 指示符
77 0
|
编译器
public <T> T method(T t)方法详解
public <T> T method(T t)方法详解
294 0
public <T> T method(T t)方法详解
|
存储 安全
你所不知道的final
你所不知道的final
361 0
你所不知道的final
|
定位技术 Windows
1137. Final Grading (25)
For a student taking the online course "Data Structures" on China University MOOC (http://www.
1066 0