Skip to content

Commit 3024913

Browse files
committed
Updated README
1 parent d7724ce commit 3024913

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is a C# binding of the [47 Degrees Swipe List View](https://github.com/47de
55

66
The Swipe List View is an Android List View implementation with support for drawable cells and many other swipe related features. This control simplifies the building of lists in Android that support swipe gestures on the list items. Swipe Modes:
77
* Left* Right* Both* NoneSwipe Actions:
8-
* Reveal - Swipe to reveal a view behind the list item* Dismiss - Swipe to remove a list item from the list* Choice - Swipe with a rubber band-like behavior that toggles the selected state of the list item* RevealDismiss - Swipe to reveal a view behind the list item before removing the list item from the list
8+
* Reveal - Swipe to reveal a view behind the list item* Dismiss - Swipe to remove a list item from the list* Choice - Swipe with a rubber band-like behavior that toggles the selected state of the list item
99

1010
#XML Usage
1111

@@ -20,23 +20,19 @@ If you decide to use SwipeListView as a view, you can define it in your xml layo
2020
android:layout_height="wrap_content"
2121
swipe:swipeFrontView="@+id/front"
2222
swipe:swipeBackView="@+id/back"
23-
swipe:swipeRevealDismissView="@+id/revealDismiss"
24-
swipe:swipeActionLeft="[reveal | dismiss | choice | revealdismiss]"
25-
swipe:swipeActionRight="[reveal | dismiss | choice | revealdismiss]"
23+
swipe:swipeActionLeft="[reveal | dismiss | choice]"
24+
swipe:swipeActionRight="[reveal | dismiss | choice]"
2625
swipe:swipeMode="[none | both | right | left]"
2726
swipe:swipeCloseAllItemsWhenMoveList="[true | false]"
2827
swipe:swipeOpenOnLongPress="[true | false]"
2928
swipe:swipeAnimationTime="[milliseconds]"
3029
swipe:swipeOffsetLeft="[dimension]"
3130
swipe:swipeOffsetRight="[dimension]"
32-
swipe:choiceOffset="[dimension]"
33-
swipe:swipeRevealDismissThreshold="[float]"
3431
/>
3532
```
3633

3734
* `swipeFrontView` - **Required** - front view id.
3835
* `swipeBackView` - **Required** - back view id.
39-
* `swipeRevealDismissView` - view that appears when in RevealDismiss mode when the swipeRevealDismissThreshold is reached
4036
* `swipeActionLeft` - Optional - left swipe action Default: 'reveal'
4137
* `swipeActionRight` - Optional - right swipe action Default: 'reveal'
4238
* `swipeMode` - Gestures to enable or 'none'. Default: 'both'
@@ -45,8 +41,6 @@ If you decide to use SwipeListView as a view, you can define it in your xml layo
4541
* `swipeAnimationTime` - item drop animation time. Default: android configuration
4642
* `swipeOffsetLeft` - left offset
4743
* `swipeOffsetRight` - right offset
48-
* `choiceOffset` - choice toggle offset
49-
* `swipeRevealDismissThreshold` - percent of swipe across the screen until the swipeRevealDismissView appears
5044

5145
# License
5246

0 commit comments

Comments
 (0)