标签:split tle views and string tran git ann 方法
在知乎client上看到了这样的效果。左滑Activity能够返回到上一界面。非常适合单手操作。
找了非常久,最终在github上看到了SwipeBackLayout这个开源项目。地址:
须要使用到的类:
SwipeBackActivity.java
SwipeBackLayout.java
ViewDragHelper.java
public class BaseActivity extends SwipeBackActivity {
private SwipeBackLayout mSwipeBackLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mSwipeBackLayout = getSwipeBackLayout();
//设置滑动方向,可设置EDGE_LEFT, EDGE_RIGHT, EDGE_ALL, EDGE_BOTTOM
mSwipeBackLayout.setEdgeTrackingEnabled(SwipeBackLayout.EDGE_LEFT);
}
}
<item name="android:windowIsTranslucent">true</item>
setSwipeBackEnable(false); //禁止滑动删除
mSwipeBackLayout.setEdgeSize(int size);
可是上面这种方法不太好用。效果不明显,推荐改动ViewDragHelper.java这个类源代码中的getEdgeTouched(int x, int y)方法,例如以下
private int getEdgeTouched(int x, int y) {
int result = 0;
result = EDGE_LEFT;//这样每次都是全屏左滑删除
//解决仅仅有点击屏幕左边才有响应的问题
/*if (x < mParentView.getLeft() + mEdgeSize)
result = EDGE_LEFT;
if (y < mParentView.getTop() + mEdgeSize)
result = EDGE_TOP;
if (x > mParentView.getRight() - mEdgeSize)
result = EDGE_RIGHT;
if (y > mParentView.getBottom() - mEdgeSize)
result = EDGE_BOTTOM;*/
return result;
}
经过上面步骤,应该就能如期实现效果了。
以下放上我的Demo截图:
这是Demo源代码
开发工具:AndroidStudio
标签:split tle views and string tran git ann 方法
原文地址:http://www.cnblogs.com/clnchanpin/p/7224557.html