gpt4 book ai didi

android - Onclick 被多次调用

转载 作者:搜寻专家 更新时间:2023-11-01 09:46:18 25 4
gpt4 key购买 nike

我有一个带有复选框和可点击的 textviews 的 ListView ,定义如下:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:focusableInTouchMode="false"
android:focusable="false">
<CheckBox
android:id="@+id/favouritebutton"
android:layout_width="60dp"
android:layout_height="40dp"
android:layout_centerHorizontal="true"
android:text="Like"
android:focusable="false"
android:clickable="true"
android:layout_centerVertical="true"
android:gravity="center_vertical"
android:textSize="12sp">
</CheckBox>
<TextView
android:id="@+id/behindPlanItemLabel"
android:layout_width="60dp"
android:layout_height="40dp"
android:drawablePadding="-5dp"
android:focusable="false"
android:clickable="true"
android:gravity="center_vertical"
android:text="Plan"
android:textColor="#000000"
style="@style/behindPlanItemLabel"
android:textSize="12sp" />
<TextView
android:id="@+id/behindTimeItemLabel"
android:layout_width="60dp"
android:layout_height="40dp"
android:drawablePadding="-5dp"
android:gravity="center_vertical"
android:text="Timer"
android:focusable="false"
android:clickable="true"
android:textColor="#000000"
style="@style/behindTimerItemLabel"
android:textSize="12sp" />
</LinearLayout>

我定义了一个 CustomerAdapter,它扩展了 CursorAdapter 并实现了 onClickListener。在 newView 方法中,我将监听器添加到每个按钮和 TextView 上作为

        viewHolder.timerView.setOnClickListener(this);
viewHolder.likeBox.setOnClickListener(this);
viewHolder.planView.setOnClickListener(this);

我已经覆盖了 Onclick View 来捕捉点击。
当我点击布局中的第三项计时器时,
onclick 被调用一次,但是当我单击布局中的第二项“计划”时,
onCLick 被调用了两次,当我单击布局中的第一个项目“喜欢”时,onclick 被调用了 3 次。
我只需要为任何点击获取 oneClick 回调。
关于我在这里做错了什么有什么建议吗?

下面是完整的onCLick代码

      @Override
public void onClick(View view) {
int actionType;

switch (view.getId()) {
case R.id.favouritebutton:
Log.d(LOG_TAG, "favourite button");
actionType = Constants.CLICKED_FAV;
// Do something
case R.id.behindPlanItemLabel:
Log.d(LOG_TAG, "plan button");
actionType = Constants.CLICKED_PLAN;
// Do something
case R.id.behindTimeItemLabel:
Log.d(LOG_TAG, "timer button");
actionType = Constants.CLICKED_TIMER;
// Do something
}
}

最佳答案

感谢您的投入。我的问题现在通过在每个 switch case 语句中添加 return 得到解决。

           switch (view.getId()) {
case R.id.favouritebutton:
Log.d(LOG_TAG, "favourite button");
actionType = Constants.CLICKED_FAV;
// Do something
return;
case R.id.behindPlanItemLabel:
Log.d(LOG_TAG, "plan button");
actionType = Constants.CLICKED_PLAN;
// Do something
return;
case R.id.behindTimeItemLabel:
Log.d(LOG_TAG, "timer button");
actionType = Constants.CLICKED_TIMER;
// Do something
return;
}

关于android - Onclick 被多次调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37935474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com