如标题中所述,我有一个滚动视图应该是在听longclicks,但是没有抓到任何。当我按住滚动视图时没有任何事情发生 - 没有日志,没有触觉反馈,&没有对话。
提前致谢!
JAVA:
...
ScrollView text_sv = (ScrollView) findViewById(R.id.text_sv);
text_sv.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
MMMLogs.i("click", "long-click recognized");
AlertDialog.Builder builder = new AlertDialog.Builder(_this);
builder
.setTitle(name)
.setMessage(DHMenuStorage.notification)
.setCancelable(false)
.setNegativeButton("Close", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
return true;
}
});
...
XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="5dp" >
<ScrollView
android:id="@+id/text_sv"
android:layout_width="match_parent"
android:layout_height="75dp"
android:hapticFeedbackEnabled="true"
android:clickable="true"
android:longClickable="true" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/Gray"
android:focusable="false"
android:gravity="center"
android:padding="4dp"
android:text="-- Dining Hall Name --"
android:textColor="@color/Black"
android:textSize="28dp"
android:textStyle="bold" />
<TextView
android:id="@+id/note"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/Gray"
android:focusable="false"
android:gravity="center"
android:padding="4dp"
android:text="-- Special note here --"
android:textColor="@color/Black"
android:textSize="14dp"
android:textStyle="normal" />
</LinearLayout>
</ScrollView>
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="5dp" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</LinearLayout>
</TabHost>
答案 0 :(得分:7)
我从来没有确定问题的确切来源,但我怀疑它与滚动视图需要自己滚动的听众存在某种冲突。
我通过在linearlayout而不是scrollview上设置完全相同的侦听器来解决此问题。简单。希望它有所帮助!
答案 1 :(得分:0)
查看ScrollView的OnTouchEvent。它特别允许您在scrollView注册运动事件时触发performClick()命令。似乎ScrollView将拦截所有触摸事件,将它们视为动作事件,并且不会让事件冒泡到任何父母点击。
哪个有道理。如果我正在触摸scrollView,我可能希望它是一个点击滚动视图内的东西,但我不希望它触发与scrollView的父相关的东西。