アクティビティがあり、このアクティビティのフレームレイアウトでいくつかのフラグメントを表示できます。 FragmentActivityではなく、フラグメント内にフラグメントで構成されるビューページャーを配置したいと思います。これをどのように行うことができますか?
ViewPager
をフラグメントに含め、フラグメントをそのViewPager
のページにするには、ネストされたフラグメントを使用する必要があります。 minSdkVersion
が17以上の場合、フラグメントのネイティブ実装はネストされたフラグメントをサポートします。そうでなければ、フラグメントの_support-v13
_(または_support-v4
_)バックポートを使用する必要があります。
次に、FragmentPagerAdapter
またはFragmentStatePagerAdapter
にgetChildFragmentManager()
を与えるだけです。
_/***
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()));
}
}
_
(from このサンプルプロジェクト )