0

我想在 LongClicked 一个项目时取消 shortClick,我在列表视图中使用波纹效果材料波纹库但是当我长按列表项目时它也调用 onClick-event

list.setOnItemClickListner 不适用于行项目上的 MaterialRippleLayout

我在 OnLongClicked 中也返回了 true 但不起作用..

还在MaterialRippleLayout.java中尝试并添加了方法

   @Override
   public void setOnLongClickListener(OnLongClickListener l) {
    super.setOnLongClickListener(l);
     childView.setOnLongClickListener(l);
}

以及手势检测器的一些变化

这是我的代码 list_item

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:gravity="center" >

<com.balysv.materialripple.MaterialRippleLayout
    android:id="@+id/list_item_ripple"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#00000000"
    app:rippleAlpha="0.2"
    app:rippleColor="#585858"
    app:rippleDelayClick="true"
    app:rippleHover="true"
    app:rippleOverlay="true" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:orientation="vertical" >

        <TableRow
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <TextView
                android:id="@+id/textView1_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:gravity="left"
                android:text="Name/Number"
                android:textAppearance="?android:attr/textAppearanceLarge" />

            <TextView
                android:id="@+id/textView2_dur"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:gravity="right"
                android:text="Duration"
                android:textAppearance="?android:attr/textAppearanceLarge" />
        </TableRow>

        <TableRow
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp" >

            <TextView
                android:id="@+id/textView3_in_out"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="left"
                android:text="Incoming/Outgoing"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/textView4_time"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:gravity="right"
                android:text="Time"
                android:textAppearance="?android:attr/textAppearanceSmall" />
        </TableRow>
    </LinearLayout>
</com.balysv.materialripple.MaterialRippleLayout>

&java代码

      holder.riple.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View v) {

                    Toast.makeText(getActivity(), "item riple clicked "+position, 0).show();
                    Intent intent = new Intent(getActivity(), PlayerActivity.class);
                    intent.putExtra("songs", list_path.get(position).toString());
                    intent.putExtra("name", ""+parts[0]);
                    intent.putExtra("dur", ""+convertMillis(parts[2]));
                    intent.putExtra("time", getDate(parts[1].toString()));
                    startActivity(intent);
                }
            });
            holder.riple.setOnLongClickListener(new OnLongClickListener() {

                @Override
                public boolean onLongClick(View v) {
                    list.showContextMenu();
                    //Toast.makeText(getActivity(), "LongClick", 0).show();
                    //v.setClickable(false);//v.isClickable();
                    return true;
                }
            });

对不起英语不好

4

2 回答 2

1

看起来您正在使用 aListView并且list_item是每行的 xml。如果我错了,请立即停止阅读!但如果我是对的,我们应该考虑使用方法setItemClickListener()setOnItemLongClickListener().

所以在你的Activity

    listView = (ListView) findViewById(R.id.listView);

    listView.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

        }
    });

    listView.setOnItemLongClickListener(new OnItemLongClickListener() {
        @Override
        public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
            return true; // return true to prevent the `onClick` from being triggered as well.
        }
    });

注意 position 参数在这两个方法中被传递,所以只要你有对正在显示的数据集的引用,你就可以访问被单击或长按的确切项目。

我很难说出你的代码为什么不起作用,所以有些人可能不认为这是一个答案,但我希望这会有所帮助。我所知道的是,当通过适配器在列表视图中的单个视图上设置单击侦听器时,事情会变得非常混乱。

作为旁注,如果我们想要在长按操作中执行的唯一操作是显示上下文菜单,那么我们应该考虑使用registerForContextMenu(listView)然后使用上下文菜单生命周期。可以在此处找到有关该实践的更多文档。

于 2014-12-09T09:19:35.930 回答
0

实际上,material-ripple library 中有一个错误 ,已经在那里报告了,https://github.com/balysv/material-ripple/issues/15

我已经解决了我的问题,

布尔 isLongClick = false;

    holder.riple.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {

                Toast.makeText(getActivity(), "item riple clicked "+position, 0).show();
                Intent intent = new Intent(getActivity(), PlayerActivity.class);
                intent.putExtra("songs", list_path.get(position).toString());
                intent.putExtra("name", ""+parts[0]);
                intent.putExtra("dur", ""+convertMillis(parts[2]));
                intent.putExtra("time", getDate(parts[1].toString()));
                if(isLongClick== false)
                {
                startActivity(intent);
                }
                 // for click agin on item
                isLongClick = false;
            }
        });
        holder.riple.setOnLongClickListener(new OnLongClickListener() {

            @Override
            public boolean onLongClick(View v) {
                isLongClick = true;
                list.showContextMenu();
                //Toast.makeText(getActivity(), "LongClick", 0).show();
                //v.setClickable(false);//v.isClickable();
                return true;
            }
        });
于 2014-12-09T11:36:17.240 回答