SwipeBack
1.0.0
SwipeBack은 제스처를 사용하여 활동을 완료할 수 있는 안드로이드 라이브러리입니다.
왼쪽, 위쪽, 오른쪽, 아래쪽 등 스와이프 방향을 설정할 수 있습니다.
샘플 다운로드
dependencies {
compile 'com.github.liuguangqiang.swipeback:library:1.0.2@aar'
}
<dependency>
<groupId>com.github.liuguangqiang.swipeback</groupId>
<artifactId>library</artifactId>
<version>1.0.2</version>
<type>aar</type>
</dependency>
SwipeBackActivity는 이 라이브러리를 보다 쉽게 사용하기 위한 기본 활동입니다. 이 활동은 그림자를 표시하는 데 도움이 됩니다.
public class CommonActivity extends SwipeBackActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_common);
setDragEdge(SwipeBackLayout.DragEdge.LEFT);
}
}
SwipeBackLayout은 직계 하위 항목을 하나만 포함해야 합니다.
<com.liuguangqiang.swipeback.SwipeBackLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipeBackLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- SwipeBackLayout must contains only one direct child -->
</com.liuguangqiang.swipeback.SwipeBackLayout>
<style name="Theme.Swipe.Back" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
DragEdge를 설정하여 스와이프 방향을 변경할 수 있습니다.
public enum DragEdge {
LEFT,
TOP,
RIGHT,
BOTTOM
}
SwipeBackLayout은 직계 하위 항목을 하나만 포함해야 합니다.
와 같은:
Copyright 2015 Eric Liu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.