Calling a method in one fragment from another

2019-02-15 21:22发布

问题:

I've been trying for a while already (as well, searching in here) for something to help me to refresh listView in my MainFragment, when a button is pressed in other fragment. Could sommeone explain me how to make it work?

Here's MainFragment with the function (I excluded other functions, since I don't see how they contribute):

public class MainFragment extends Fragment {
public void otherList() {
    SQLite db = new SQLite(getActivity());
    db.open();
    Calendar sCalendar = Calendar.getInstance();
    String day = sCalendar.getDisplayName(Calendar.DAY_OF_WEEK,
            Calendar.LONG, Locale.ENGLISH);
    Cursor c = db.getAllRecords(day);
    Calendar cal = Calendar.getInstance();
    int hour = cal.get(Calendar.HOUR_OF_DAY);
    arrayOfBars.clear();
    if (c.moveToFirst()) {
        do {
            String country = c.getString(0);
            String city = c.getString(1);
            String bar = c.getString(2);
            String timeStart = c.getString(3);

            String[] h = timeStart.split(":");
            int times = Integer.parseInt(h[0]);

            String timeEnd = c.getString(4);
            String[] h2 = timeEnd.split(":");
            int timee = Integer.parseInt(h2[0]);

            String placeLaLo = c.getString(5);
            String description = c.getString(6);
            String likes = c.getString(7);
            String offer = c.getString(8);

            if (hour < (times + 1) || hour < (timee)) {
                getPrefs = PreferenceManager
                        .getDefaultSharedPreferences(MainFragment.this
                                .getActivity());
                boolean lay = getPrefs.getBoolean("boolean", false);
                if (lay == true) {
                    while (times < timee) {
                        timeStart = times + ":" + h[1];
                        times++;
                        timeEnd = times + ":" + h2[1];
                        arrayOfBars.add(new BarObject(country, city, bar,
                                timeStart, timeEnd, placeLaLo, description,
                                likes, offer, bar));
                    }
                } else {
                    arrayOfBars.add(new BarObject(country, city, bar,
                            timeStart, timeEnd, placeLaLo, description,
                            likes, offer, bar));
                }
            }

        } while (c.moveToNext());

        Collections.sort(arrayOfBars, new BarObject.CompST());

        lv2.setAdapter(null);
        adapter = new BarAdapter(getActivity(), arrayOfBars);
        lv2.setAdapter(adapter);
    } else {
        Toast.makeText(getActivity(), "No database found",
                Toast.LENGTH_LONG).show();
    }
    db.close();
}

}

And here's the other fragment:

public class SocialMedia extends Fragment {
ImageButton facebook, twitter, layoutS;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.social_media, container, false);
    layoutS = (ImageButton) view.findViewById(R.id.ibLayout);

    layoutS.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            SharedPreferences getPrefs = PreferenceManager
                    .getDefaultSharedPreferences(SocialMedia.this
                            .getActivity());
            boolean lay = getPrefs.getBoolean("boolean", false);
            SharedPreferences.Editor e = getPrefs.edit();
            lay = !lay;
            e.putBoolean("boolean", lay);
            e.commit();
                            //Here I want to call otherList() from MainFragment
        }
    });
    return view;
}

}

回答1:

FragmentManager fm = getFragmentManager(); 
MainFragment fragm = (MainFragment)fm.findFragmentById(R.id.main_fragment); 
fragm.otherList(); 

This code worked best for me. And seems quite easy



回答2:

In MainFragment class you can do the following code:

private static MainFragment instance = null;

@Override  
public void onCreate(@Nullable Bundle savedInstanceState) {  
    super.onCreate(savedInstanceState);  
    instance = this;  
}

public static MainFragment getInstance() {  
    return instance;  
} 

And in SocialMedia class you can call the method as follows:

MainFragment.getInstance().otherList();   


回答3:

you should use interface for this. define an interface in OtherFragment class and implement that in your MainActivity and define a public method in your MainFragment for refreshing your ListView and call that method from your MainActivity. here is an example :

public Class OtherFragment extends Fragment implements OnClickListener {

private Communicator communicator;

   ...

public void setCommunicator(Communicator communicator) {
    this.communicator = communicator;
}

@Override
public void onClick(View v) {
   communicator.clicked();
}

   public interface Communicator {
      public void clicked();
   }
}

and in your MainActivity :

public class MainActivity extends Activity implements OtherFragment.Communicator {

   MainFragment mainFragment;

   @Override
   protected void onCreate(Bundle b) {
      ...
      OtherFragment otherFragment = new OtherFragment();
      otherFragment.setCommunicator(this);
      ...
   }

   ...

   @Override 
   public void clicked() {
     mainFragment.updateList();
   }
}

and in your MainFragment :

public class MainFragment extends Fragment {

    ...

    public void updateList() {
        // update list
    }
}


回答4:

To call a method from another object (a Fragment is an object) you need to have the reference of that object. So if you want to call MainFragment#otherList() from a SocialMedia instance, SocialMedia needs a reference to MainFragment.

For example:

public class SocialMedia {

    private MainFragment mainFragment = null;

    public void setMainFragment(final MainFragment mainFragment) {
        this.mainFragment = mainFragment
    }
}

Then you can use this.mainFragment.otherList().