我有我的ViewPagerIndicator 3個不同的佈局設置數據 - https://github.com/JakeWharton/Android-ViewPagerIndicator在ViewPagerIndicatorin不同的佈局
我的項目是從網站加載數據,並相應地設置數據到3個不同的佈局ViewPager的。
我該如何去實現它?
在我TestFragment,我有
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
Log.i("mContent", mContent);
View view = null;
if (mContent.equalsIgnoreCase("title1")) {
view = inflater.inflate(R.layout.one, container, false);
} else if (mContent.equalsIgnoreCase("title2")) {
view = inflater.inflate(R.layout.two, container, false);
} else if (mContent.equalsIgnoreCase("title3")) {
view = inflater.inflate(R.layout.three, container, false);
//Textview data = (TextView)view.findViewById(id)
}
return view;
}
我知道這是根據fling'd標題設置佈局。 我知道如何找到ViewById來獲取小部件的id並設置數據。但是,數據在代碼本身中是靜態設置的。
對我來說,我必須從互聯網上抓取數據,並據此放入數據。我如何實現這一目標? 在此先感謝。
在你的問題,你鏈接到'ViewPagerIndicator'大約在'ViewPager'設置數據/佈局(?)說話?你究竟想要做什麼? – Luksprog 2013-02-25 10:34:45
對不起,我的意思是FragmentPager。 – MrYanDao 2013-02-27 04:05:38
當數據擴展時,你想增加ViewPagerIndicator嗎? – 2013-02-27 07:24:37