How to handle onContextItemSelected in a multi fragment activity?

前端 未结 11 2125
天命终不由人
天命终不由人 2020-11-29 17:26

I\'m currently trying to adapt my application to use the \"Compatibility Libraries for Android v4\" to provide the benefits of the usage of fragments even to Android 1.6 use

11条回答
  •  我在风中等你
    2020-11-29 18:15

    Just change

     @Override
        public boolean onContextItemSelected(MenuItem item) {
        return true;
     }
    

    to

    @Override
        public boolean onContextItemSelected(MenuItem item) {
        return super.onContextItemSelected(item); 
     }
    

    and will work great!!!

提交回复
热议问题