我正在使用setOnTouchlistner类来检测左右滑动。我可以让它在列表视图上正常工作,但列表视图太小,无法每次都进行良好的滑动。
然后我尝试将滑动设置为主LinearLayout。我在其中有三个其他的LinearLayout。但是感谢任何帮助都没有用。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="horizontal"
android:id="@+id/driveView"
android:focusableInTouchMode="true"
android:focusable="true"
android:clickable="true">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
以下是代码:
private LinearLayout myView = null;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.drive);
myView = (LinearLayout)findViewById(R.id.driveView);
myView.setOnTouchListener(new OnSwipeTouchListener(mContext) {
@Override
public void onSwipeLeft() {
showdrivedialog(mContext, "Drive List", "Change to Ascending list!");
}
public void onSwipeRight() {
showdrivedialog(mContext, "Drive List", "Change to Descending list!");
}
});
答案 0 :(得分:0)
我想提两件事。
1)我不知道OnSwipeTouchListener,但我对此感兴趣。我怀疑android:clickable="true"
应该是假的,因为刷卡和点击之间似乎存在冲突。
2)看看这个SO链接@ How to handle right to left swipe gestures。我不知道你在哪里获得 OnSwipeTouchListener 课程但你可以用274票复制一个!
我个人没有使用过这门课。我使用并扩展了 HorizontalScrollView 。