解决。请参阅标记为正确的答案以及我的评论。如有必要,可以发布示例代码
我正在使用VelocityViewPager来实现“投掷”行为。它有一个已知的行为,如果您将其拖动一定量,页面不会对齐。我试图绕过它但收效甚微......
尝试 1
我可以使用setCurrentItem
. 需要注意的是,如果我在当前页面之前或之后的项目上调用该函数,它只会捕捉,例如setCurrentItem(getCurrentItem()+1)
所以这个解决方案有效,但如果我必须将当前项目设置得比他们预期的更远,它会给用户带来糟糕的用户体验。
有没有人对我如何调用setCurrentItem(getCurrentItem())
并让它实际动画/滚动/捕捉有任何建议? 消息来源暗示它应该。r7代码似乎总是调用滚动函数。
尝试 2
作为另一项测试,我打了很多fakeDragBy(1)
电话来拖延ViewPager
它达到某个阈值后会突然断裂的想法,但事实并非如此。 是什么阻止了 ViewPager 捕捉?
如果您有兴趣,下面是重现此代码的代码。我使用了相同的VelocityViewPager代码,并进行了以下更改
VelocityViewPager.java
public class VelocityViewPager extends ViewPager implements GestureDetector.OnGestureListener {
...
@Override
public boolean onTouchEvent(MotionEvent event) {
// give all the events to the gesture detector. I'm returning true here so the viewpager doesn't
// get any events at all, I'm sure you could adjust this to make that not true.
mGestureDetector.onTouchEvent(event);
if (event.getAction() == MotionEvent.ACTION_UP) {
setCurrentItem(getCurrentItem(), true);
Log.d("VelocityViewPager", "Setting to item " + getCurrentItem());
}
return true;
}
....
}
MainActivity.java
package com.example.velocityviewpager;
import android.graphics.Color;
import android.os.Bundle;
import android.app.Activity;
import android.support.v4.view.PagerAdapter;
import android.view.Gravity;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
VelocityViewPager pager = (VelocityViewPager)findViewById(R.id.view);
PagerAdapter adapter = new PagerAdapter() {
@Override
public int getCount() {
return 20;
}
@Override
public Object instantiateItem(ViewGroup container, int position) {
TextView view = new TextView(MainActivity.this);
view.setText("Item "+position);
view.setGravity(Gravity.CENTER);
view.setBackgroundColor(Color.argb(255, position * 10, position * 10, position * 10));
view.setTextColor(Color.argb(255, 200, 200, 200));
container.addView(view);
return view;
}
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
container.removeView((View)object);
}
@Override
public boolean isViewFromObject(View view, Object o) {
return (view == o);
}
};
pager.setAdapter(adapter);
adapter.notifyDataSetChanged();
pager.setOffscreenPageLimit(3);
pager.setCurrentItem(0, true);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
activity_main.xml
<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<view
android:layout_width="300dip"
android:layout_height="300dip"
class="com.example.velocityviewpager.VelocityViewPager"
android:id="@+id/view"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"/>
</RelativeLayout>