【问题标题】:How to detect click on ImageView in ViewPager's PagerAdapter (android)?如何检测 ViewPager 的 PagerAdapter (android) 中对 ImageView 的点击?
【发布时间】:2015-02-21 12:21:43
【问题描述】:

发生了什么:

  1. 我正在尝试检测寻呼机中视图(图像)的 onclick 事件 适配器。
  2. 我正在触发的视图是imgGodInfoId
  3. 这永远不会触发
  4. 这似乎在常规适配器中工作......所以为什么它没有被触发 这里

AdptAtomicGodGallery.java

public class AdptAtomicGodGallery extends PagerAdapter {
    // Declare Variables
    Context context;
    Integer[] godImages;
    LayoutInflater inflater;
    String godName;


    public AdptAtomicGodGallery(Context context, Integer[] _godImages, String _godName) {
        this.context = context;
        this.godImages = _godImages;
        this.godName=_godName;
    }

    @Override
    public int getCount() {
        return godImages.length;
    }

    @Override
    public boolean isViewFromObject(View view, Object object) {
        return view == ((LinearLayout) object);
    }

    @Override
    public Object instantiateItem(ViewGroup container, int position) {

        // Declare Variables
        ImageView imgGodId;
        final ImageView imgGodInfoId;
        final RelativeLayout root;
        TextView txtShortDescription;

        inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View itemView = inflater.inflate(R.layout.adpt_atomic_god_gallery, container,false);

        // Locate the ImageView in viewpager_item.xml
        imgGodId = (ImageView) itemView.findViewById(R.id.imgGodId);
        imgGodInfoId = (ImageView) itemView.findViewById(R.id.imgGodInfoId);
        root= (RelativeLayout) itemView.findViewById(R.id.root);
        txtShortDescription= (TextView) itemView.findViewById(R.id.txtShortDescription);

        BitmapFactory.Options options = new BitmapFactory.Options();
        options.inSampleSize = 4;
        Bitmap preview_bitmap = BitmapFactory.decodeResource(context.getResources(),godImages[position], options);
        Drawable drawable = new BitmapDrawable(context.getResources(),preview_bitmap);
        root.setBackgroundDrawable(drawable);
        root.setTag(godImages[position]);
        imgGodInfoId.setTag(godName);


        if(godName.equalsIgnoreCase(Constants.GOD_ONE)){
            txtShortDescription.setText(Constants.GOD_ONE_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_TWO)){
            txtShortDescription.setText(Constants.GOD_TWO_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_THREE)){
            txtShortDescription.setText(Constants.GOD_THREE_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_FOUR)){
            txtShortDescription.setText(Constants.GOD_FOUR_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_FIVE)){
            txtShortDescription.setText(Constants.GOD_FIVE_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_SIX)){
            txtShortDescription.setText(Constants.GOD_SIX_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_SEVEN)){
            txtShortDescription.setText(Constants.GOD_SEVEN_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_EIGHT)){
            txtShortDescription.setText(Constants.GOD_EIGHT_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_NINE)){
            txtShortDescription.setText(Constants.GOD_NINE_DESCRIPTION_SHORT_DESC);
        }else if(godName.equalsIgnoreCase(Constants.GOD_TEN)){
            txtShortDescription.setText(Constants.GOD_TEN_DESCRIPTION_SHORT_DESC);
        }



        imgGodInfoId.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View arg0) {

                /*  BitmapFactory.Options options = new BitmapFactory.Options();
                options.inSampleSize = 4;
                Bitmap preview_bitmap = BitmapFactory.decodeResource(context.getResources(),(Integer) root.getTag(), options);

                 */

                Toast.makeText(context, "clicked", Toast.LENGTH_SHORT).show();

                /*Intent intent=new Intent(context,ActAtomicGodDetailDesc.class);
                intent.putExtra("GOD_NAME", imgGodInfoId.getTag().toString());
                intent.putExtra("GOD_IMAGE",(Integer) root.getTag());
                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                context.startActivity(intent);*/

            }
        });


        // Add viewpager_item.xml to ViewPager
        ((ViewPager) container).addView(itemView);



        return itemView;
    }




    @Override
    public void destroyItem(ViewGroup container, int position, Object object) {
        // Remove viewpager_item.xml from ViewPager
        ((ViewPager) container).removeView((LinearLayout) object);

    }
}

用于寻呼机适配器的 XML

<RelativeLayout
    android:id="@+id/root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clickable="true"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imgGodInfoId"
        android:layout_width="75dp"
        android:layout_height="75dp"
        android:clickable="true"
        android:padding="5dp"
        android:scaleType="fitXY"
        android:src="@drawable/img_info_black" />

    <LinearLayout
        android:id="@+id/selShortDescContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:background="@drawable/sel_selectyourgod"
        android:gravity="center" >

        <TextView
            android:id="@+id/txtShortDescription"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:paddingBottom="10dp"
            android:paddingTop="10dp"
            android:text="@string/swipe_notification"
            android:textColor="#FFFFFF"
            android:textSize="12sp"
            android:textStyle="bold"
            android:color="#55000000" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/selFavGodsContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/selShortDescContainer"
        android:layout_alignParentLeft="true"
        android:layout_marginBottom="141dp"
        android:background="@drawable/sel_selectyourgod"
        android:gravity="center" >

        <TextView
            android:id="@+id/txtNotification"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:paddingBottom="10dp"
            android:paddingTop="10dp"
            android:text="@string/swipe_notification"
            android:textColor="#FFFFFF"
            android:textSize="12sp"
            android:textStyle="bold"
            android:color="#55000000" />
    </LinearLayout>
</RelativeLayout>

【问题讨论】:

  • 你在ImageView的xml中添加android:clickable="true"了吗?
  • @ρяσѕρєяK ...是的,我试过了...仍然没有触发代码中的吐司
  • ImageView 的父视图是否可以点击?
  • @ρяσѕρєя K .... 是的,父级也是可点击的……但是我是否使用了正确的代码来检测 onclick ... 因为我从未尝试过检测 onclick in寻呼机适配器,,,,它似乎适用于常规列表视图......这个逻辑
  • root 布局也可以点击?

标签: android android-fragments android-viewpager android-imageview android-pageradapter


【解决方案1】:

我已经能够做到这一点:覆盖你的Fragments 的onViewCreated() 方法ViewPager 为:

@Override
public void onViewCreated(View view, Bundle savedInstanceState){

    view.setOnClickListener(new OnClickListener(){
        public void onClick(View v){

            /*  Do as you please here. */
        }
    });
}

试试这个。这应该可以。

编辑:

如果您将ViewPagerPagerAdapterFragments 一起使用,并且覆盖Fragments 的onViewCreated() 方法,则此方法将有效。

【讨论】:

  • 我是否需要在此处添加任何超级方法...这是什么...我收到一个错误......The method onViewCreated(View, Bundle) of type AdptAtomicGodGallery must override or implement a supertype method
  • 清理并再次构建您的项目。 onViewCreated()超类型方法。
  • for i/p [+1]....另外,既然我正在使用活动,我是否需要在活动中使用此功能?
  • Activity 没有这个方法。这仅适用于您的PagerAdapter 持有的Fragments :)
  • 哦......我正在使用活动......我真的很惊讶这在寻呼机适配器中是不可能的,因为它在列表视图中很容易做到
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多