我是Android新手,我试图检测滑动事件。如果我将我的监听器添加到webview或textview,它可以完美地运行:
WebView myWebView = (WebView) findViewById(R.id.myWebview);
myWebView.setOnTouchListener(myListener);
但是,如果我创建一个包含一些项目的linearlayout,然后尝试添加我的监听器,则会发生nohing:
LinearLayout ll = (LinearLayout)findViewById(R.id.myLinearLayout);
ll.setOnTouchListener(myListener);
据我所知,WebView和LinearLayout都扩展了View类,因此setOnTouchListener应该对它们都有效。我的问题是如何让它在我的线性布局视图上工作?我试图分别为布局的所有孩子设置听众,但这不是我想要的。例如,如果这是我的xml:
<LinearLayout
android:id="@+id/myLinearLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<RadioButton
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton" />
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Spinner
android:id="@+id/spinner1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<Spinner
android:id="@+id/spinner2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
如果我滑动布局的实际chidlren,即我的单选按钮或微调器,则会检测到滑动事件。但如果我在布局的空白区域滑动没有任何反应
任何帮助和指示都将受到高度赞赏。提前谢谢!
答案 0 :(得分:0)
试试这个监听器
LinearLayout l=(LinearLayout)findViewById(R.id.myLinearLayout);
l.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View arg0, MotionEvent arg1) {
// TODO Auto-generated method stub
Log.i("Touch","Sample x"+arg1.getX());
Log.i("Touch","Sample x"+arg1.getY());
return true;
}
});