Java tutorial
package heylee.android.weatherapp; /* Copyright (C) 2015 Heylee authors * * selfof0800@gmail.com * * 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. */ import java.util.HashMap; import java.util.List; import java.util.Map; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentPagerAdapter; public class CPageAdapter extends FragmentPagerAdapter { private HashMap<String, Object> weatherData; private HashMap<String, Object> weatherDetailData; List<Map<String, Object>> mListData; public CPageAdapter(FragmentManager fm) { super(fm); } public void setData(HashMap<String, Object> map) { weatherData = map; mListData = (List<Map<String, Object>>) map.get("list"); } public void setDetailData(HashMap<String, Object> map) { weatherDetailData = map; } @Override public int getItemPosition(Object object) { return POSITION_NONE; } @Override public Fragment getItem(int position) { return new FMPageView(mListData.get(position), weatherDetailData); } @Override public int getCount() { if (weatherData != null) { return weatherData.size(); } else return 0; } }