我有一些名为pager
的特定JazzyViewPager
,这是一个带有一些效果的经典ViewPager
。
在我的寻呼机适配器方法instantiateItem(), @param(ViewGroup container,final int position)
中,我放了
int pic = R.drawable.ic_launcher;
ImageView img = new ImageView(getActivity());
img.setBackgroundResource(pic);
container.addView(img,
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT);
LayoutInflater inflater_pager =
(LayoutInflater) container.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View vi = inflater_pager.inflate(R.layout.tag_list, null);
container.addView(vi,0);
tag_list
布局对应
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Nikita Hrist"
/>
</LinearLayout>
现在我可以看到我设置的图片作为背景,但我找不到文字。我该如何处理?