我正在实现一个应用程序,该应用程序在一个活动中具有图像网格视图,并且每个图像都有一个片段,其中包含全屏图像。当我单击网格中的任何图像时,它应该会打开相应的片段。但是,我们不能使用意图来执行此操作。这是我的代码
public void onItemClick(AdapterView<?> arg0, View arg1, int position,
long arg3) {
// TODO Auto-generated method stub
if(position==0)
{
Intent i=new Intent(Gallery.this,ImageFrag1.class);
startActivity(i);
}
片段是
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class ImageFrag1 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.imagefrag1, container, false);
}
}
此片段绑定到一个活动 ImagesSwipe。那么我如何实现网格视图项与其相应片段之间的转换。谢谢