我在 Android 上发现了一个奇怪的行为。假设我有一个列表视图,每一行都是一个包含 textView 的线性布局。我在listView 上设置了一个longClickListener。另外,我在 textView 上设置了一个 onTouchEvent。我想要的行为是,如果用户按下列表中的 textView,则应该运行 onTouchEvent。如果用户在 textView 外长按,它应该执行 longClickListener 中定义的操作。但是,在 Android 4.2.1 中,这种行为似乎不起作用。我发现 Google 更改了代码,以便 ChildView 在 Jelly Bean 中从其父视图共享按下状态。这是正确的吗?如果是这种情况,我该如何实现我想要的方式?
换句话说,我希望 childView 和 parentView 独立运行!
任何答案将不胜感激!
下面是我的 CustomTextView.java
public class CustomTextView extends TextView {
public CustomTextView(Context context) {
super(context);
setPressed(false);
}
public CustomTextView(Context context, AttributeSet attrs) {
super(context, attrs);
setPressed(false);
}
public CustomTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setPressed(false);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
Intent.... something
Start a new activity... pretty straightforward
return super.onTouchEvent(event);
}
}
下面是我的 list_item.xml 的文本视图
<com.keek.widget.CustomTextView
android:id="@+id/caption"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/thumbnail_overlay"
android:lineSpacingExtra="1dp"
android:textColor="@android:color/black"
android:textSize="@dimen/text_11"
android:duplicateParentState="false"
android:longClickable="false"
android:textColorLink="@color/linkify_blue" />
我的清单非常简单。它是一个带有 onLongClickListener 的普通 listView,它会打开一个对话框。
这是当我按下 textView 时,对话框和新活动同时打开。我想要的是,当我按下 textView 时,它应该只打开一个新活动而不是一个对话框。