Ho un'attività e posso mostrare alcuni frammenti su framelayout su questa attività. Vorrei mettere un viewpager formato da frammenti all'interno di un frammento invece che da FragmentActivity. Come si può fare?Come mettere viewpager all'interno del frammento in Android?
8
A
risposta
31
Per avere un ViewPager
in un frammento, e per fare in modo che i frammenti siano le pagine in quello ViewPager
, è necessario utilizzare i frammenti annidati. Se il tuo minSdkVersion
è 17 o superiore, l'implementazione nativa dei frammenti supporta i frammenti annidati. In caso contrario, sarà necessario utilizzare il backport di frammenti support-v13
(o support-v4
).
Poi, basta per dare al vostro getChildFragmentManager()
FragmentPagerAdapter
o FragmentStatePagerAdapter
:
/***
Copyright (c) 2012 CommonsWare, LLC
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License.
From _The Busy Coder's Guide to Android Development_
http://commonsware.com/Android
*/
package com.commonsware.android.pagernested;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class PagerFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container,
Bundle savedInstanceState) {
View result=inflater.inflate(R.layout.pager, container, false);
ViewPager pager=(ViewPager)result.findViewById(R.id.pager);
pager.setAdapter(buildAdapter());
return(result);
}
private PagerAdapter buildAdapter() {
return(new SampleAdapter(getActivity(), getChildFragmentManager()));
}
}
(da this sample project)
Grazie mille, che è disponibile. – Sayed
Completamente ha funzionato per me, grazie !! – josher932
Precedentemente ho usato 'getFragmentManager()'. Quindi modificato da 'getChildFragmentManager()'. Ha funzionato come un fascino! –