简体   繁体   中英

How to implement an Interface in another class in main_activity if main_activity already implements ActionBar.TabListener

my MainActivity is

   public class MainActivity extends FragmentActivity implements
    ActionBar.TabListener {

I have a class called FragmentA which extends Fragment and it has an interface called

    public interface OnListSelectedListener{
    public void onListSelected(String id);
}

how can i use this onListSelected(String id) in MainActivity???

  public class MainActivity extends FragmentActivity implements
ActionBar.TabListener, OnListSelectedListener {

      @Override
      public void onListSelected(String id) {

      }
   }

This should fix your problem

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM