私のMainActivityでフラグメントメソッドを呼び出したいと思います。フラグメントは、私のMainActivityアクティビティでフラグメントメソッドを呼び出す
mViewPager = (ViewPager) findViewById(R.id.pager);
setupViewPager(mViewPager);
private void setupViewPager(ViewPager mViewPager) {
mSectionsPagerAdapter = new SectionsPagerAdapter(this, getSupportFragmentManager());
mSectionsPagerAdapter.addFragment(new FeedsFragment(), "Around You");
mSectionsPagerAdapter.addFragment(new InboxFragment(), "Shares");
mViewPager.setAdapter(mSectionsPagerAdapter);
}
@Override
public void onLocationChanged(Location location) {
currentLocation = location;
if (lastLocation != null
&& geoPointFromLocation(location)
.distanceInKilometersTo(geoPointFromLocation(lastLocation)) < 0.01) {
// If the location hasn't changed by more than 10 meters, ignore it.
return;
}
lastLocation = location;
if (!hasSetUpInitialLocation) {
// Zoom to the current location.
hasSetUpInitialLocation = true;
}
FeedsFragment fragment = (FeedsFragment) getSupportFragmentManager().findFragmentById(R.id.feeds_fragment);
if(fragment != null) {
fragment.doFeedsQuery();
}
}
この私SectionsPagerAdapterに私が法と呼ばれている
私MainActivityにViewPagerに取り付けられている。
protected Context mContext;
private final List<Fragment> mFragmentList = new ArrayList<>();
private final List<String> mFragmentTitleList = new ArrayList<>();
public SectionsPagerAdapter(Context context, FragmentManager fm) {
super(fm);
mContext = context;
}
@Override
public Fragment getItem(int position) {
// getItem is called to instantiate the fragment for the given page.
// Return a DummySectionFragment (defined as a static inner class
// below) with the page number as its lone argument.
return mFragmentList.get(position);
}
@Override
public int getCount() {
return mFragmentList.size();
}
public void addFragment(Fragment fragment, String title) {
mFragmentList.add(fragment);
mFragmentTitleList.add(title);
}
@Override
public CharSequence getPageTitle(int position) {
return mFragmentTitleList.get(position);
}
}
これは私が私の断片から呼び出しています方法です
public void doFeedsQuery() {
Location myLoc = (MainActivity.currentLocation == null) ? MainActivity.lastLocation : MainActivity.currentLocation;
// If location info is available, load the data
if (myLoc != null) {
// Refreshes the list view with new data based
// usually on updated location data.
feedsQueryAdapter.loadObjects();
}
}
これは私がフラグメントを呼び出すリソースIDです。
は、ここで私は間違った場所、私は知らない私のLogCat
java.lang.NullPointerException: Attempt to invoke virtual method 'void io.wyntr.peepster.Fragments.FeedsFragment.doFeedsQuery()' on a null object reference
at io.wyntr.peepster.Activities.MainActivity.onLocationChanged(MainActivity.java:687)
at com.google.android.gms.location.internal.zzk$zzb.handleMessage(Unknown Source)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:168)
at android.app.ActivityThread.main(ActivityThread.java:5845)
at java.lang.reflect.Method.invoke(Native Method)
です。
あなたのメソッドを呼び出すオブジェクトがnullであるかどうかの断片を確認してください。フラグメントはViewPagerにあるので、現在のフラグメントとその(右または左の)フラグメントのみがアクセス可能です。他は破壊される。 –
@HirenDabhi私はviewPagerの最初のフラグメントからメソッドを呼び出していますが、オブジェクトがnullであることをどのようにチェックする必要がありますか? – Savita
'if(fragment!= null){}'のように – jaibatrik