这是一个显示问题dropbox链接的测试项目: https://www.dropbox.com/sh/8s3v9ydcj6jvpl8/AACZ2VRP2N9R1ec7pxrsAn0ga?dl=0
我有一张带有listview的cardview。我也需要列表视图中的点击项目,我希望能够使用ontouchlistener移动整个cardview。 我在cardview上设置了一个onTouchListener,但它不起作用。
代码:
将它放在build.gradle中:
compile 'com.android.support:cardview-v7:22.0+'
MainActivity:
package com.XXXXXXXX.testontouch;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.CardView;
import android.view.MotionEvent;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
private ListView mylistview;
private CardView mycardview;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mycardview = (CardView)findViewById(R.id.mycardview);
mylistview = (ListView) findViewById(R.id.myListView);
List<String> your_array_list = new ArrayList<String>();
your_array_list.add("foo");
your_array_list.add("bar");
your_array_list.add("foo");
your_array_list.add("bar");
your_array_list.add("foo");
your_array_list.add("bar");
your_array_list.add("foo");
your_array_list.add("bar");
your_array_list.add("foo");
your_array_list.add("bar");
your_array_list.add("foo");
your_array_list.add("bar");
your_array_list.add("foo");
your_array_list.add("bar");
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(
this,
android.R.layout.simple_list_item_1,
your_array_list );
mylistview.setAdapter(arrayAdapter);
mycardview.setCardElevation(20);
mycardview.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
System.out.println("TOuchedddd");
return true;
}
});
}
}
TOuchedddd从不打印。 如果我从cardview中删除ListView,它就会开始工作。
因此,listView首先使用触摸事件而不是父卡片视图。
MainActivity的XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.pranapps.testontouch.MainActivity">
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="200dp"
android:id="@+id/mycardview"
card_view:cardUseCompatPadding="true">
<ListView
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:id="@+id/myListView"
android:dividerHeight="0.2dp"
android:overScrollMode="always"
android:smoothScrollbar="true"
android:groupIndicator="@null"
></ListView>
</android.support.v7.widget.CardView>
</RelativeLayout>
我已经尝试了android的true和false:clickable,android:focusable和android:focusableInTouchMode。没有运气。
请帮忙提出建议! 谢谢!
编辑:在向下投票之前,请至少对你为何选择投票发表评论。
答案 0 :(得分:4)
在Android中,触摸事件会像孩子一样从孩子到父母冒泡。但是,父母可以选择拦截针对其中一个孩子的所有触摸事件,并决定否决将事件发送给孩子。这正是您想要的,如果我理解正确您的触摸事件应该被调用,当您触摸您的cardview时,无论发生什么,然后在需要时将触摸事件发送到您的子列表视图。
要拦截来自CardView的触摸事件,您需要创建一个自定义视图,将其子类化并覆盖onInterceptTouchEvent方法:
package com.pranapps.testontouch;
import android.content.Context;
import android.util.AttributeSet;
import android.support.v7.widget.CardView;
import android.view.MotionEvent;
import android.view.View;
public class CardViewTouchThief extends CardView {
public CardViewTouchThief(Context context) {
super(context);
}
public CardViewTouchThief(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CardViewTouchThief(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
/*
* This method determines whether we want to intercept the motion.
* If we return true, onTouchEvent will be called.
*/
return true;
}
}
然后使用CardViewTouchThief,您通常会在XML布局中使用CardView:
<com.pranapps.testontouch.CardViewTouchThief
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="200dp"
android:id="@+id/mycardview"
card_view:cardUseCompatPadding="true">
<ListView
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:id="@+id/myListView"
android:dividerHeight="0.2dp"
android:overScrollMode="always"
android:smoothScrollbar="true"
android:groupIndicator="@null"/>
</com.pranapps.testontouch.CardViewTouchThief>
在您的活动中,只要您希望将触摸事件发送到列表视图,就可以自行处理逻辑。
mycardview.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Log.d("MainActivity", "TOuchedddd");
if(mylistview!=null){
//Route all touch event to listview without logic
mylistview.onTouchEvent(event);
}
return true;
}
});
Here是固定项目源代码。