作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的自定义寻呼机适配器中启动 Fragment。但是,我不知道如何让 getSupportFragmentManager()
开始事务。
非常感谢您在此事上花费的时间和提供的帮助。
这是我的代码,寻呼机的自定义适配器:
public static class SlideShowAdapter extends PagerAdapter {
private ArrayList<Movie> popularMovieList;
private LayoutInflater inflater;
private Context context;
public SlideShowAdapter(Context context, ArrayList<Movie> popularMovieList) {
this.context = context;
this.popularMovieList =popularMovieList;
inflater = LayoutInflater.from(context);
}
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
container.removeView((View) object);
}
@Override
public int getCount()
{
return popularMovieList.size();
}
@Override
public Object instantiateItem(ViewGroup view, final int position) {
View myImageLayout = inflater.inflate(R.layout.slide, view, false);
ImageView myImage = (ImageView) myImageLayout
.findViewById(R.id.slideShowImg);
Picasso.with(context).load(popularMovieList.get(position).getImage()).into(myImage);
view.addView(myImageLayout, 0);
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
MovieFragment movieFragment = MovieFragment
.newInstance(popularMovieList.get(position),popularMovieList.get(position).getGenre());
/***These code below does not work*/
getActivity().getSupportFragmentManager().beginTransaction()
.replace(R.id.fragArea,movieFragment)
.addToBackStack(null)
.commit();
}
});
return myImageLayout;
}
最佳答案
如果你想在SlideShowAdapter
中使用FragmentManager
:
SlideShowAdapter
构造函数Activity
作为 FragmentActivity
或 AppCompatActivity
传递(Activity
类没有 getSupportFragmentManager()
方法)到其构造函数,然后执行 myActivity.getSupportFragmentManager()
。关于java - 如何从 PagerAdapter 启动 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46743255/
我是一名优秀的程序员,十分优秀!