Skip to content

Commit

Permalink
0.8.5.4 version has been released.
Browse files Browse the repository at this point in the history
  • Loading branch information
evrencoskun committed Jan 21, 2018
1 parent 1c1723e commit fc5ccb8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
18 changes: 14 additions & 4 deletions README.md
Expand Up @@ -59,7 +59,7 @@ To use this library in your android project, just simply add the following depen

```
dependencies {
compile 'com.evrencoskun.library:tableview:0.8.5.1'
compile 'com.evrencoskun.library:tableview:0.8.5.4'
}
```

Expand Down Expand Up @@ -523,14 +523,14 @@ Several helper methods have been inserted on TableView. These are;
TableView has some helper functions to change desired cell item model easily with 0.8.5.1 version. These are;

- ```java addRow(int pYPosition, YourRowHeaderModel pRowHeaderItem, List<YourCellItemModel> pCellItems)```
- ```java addRowRange(int pYPositionStart, int pItemCount, List<YourRowHeaderModel> pRowHeaderItem, List<List<YourCellItemModel>> pCellItems))```
- ```java addRowRange(int pYPositionStart, List<YourRowHeaderModel> pRowHeaderItem, List<List<YourCellItemModel>> pCellItems))```
- ```java removeRow(int pYPosition)```
- ```java removeRowRange(int pYPositionStart, int pItemCount)```
- ```java changeRowHeaderItem(int pYPosition, YourRowHeaderModel pRowHeaderModel)```
- ```java changeRowHeaderItemRange(int pYPositionStart, int pItemCount, List<YourRowHeaderModel>pRowHeaderModelList)```
- ```java changeRowHeaderItemRange(int pYPositionStart, List<YourRowHeaderModel>pRowHeaderModelList)```
- ```java changeCellItem(int pXPosition, int pYPosition, YourCellItemModel pCellModel)```
- ```java changeColumnHeader(int pXPosition, YourColumnHeaderModel pColumnHeaderModel)```
- ```java changeColumnHeaderRange(int pXPositionStart, int pItemCount, List<YourColumnHeaderModel>pColumnHeaderModelList)```
- ```java changeColumnHeaderRange(int pXPositionStart, List<YourColumnHeaderModel>pColumnHeaderModelList)```

*Note:* <a href="https://github.com/evrencoskun/TableViewSample2"> TableViewSample 2 </a> app shows also usage of these helper methods.

Expand Down Expand Up @@ -576,6 +576,16 @@ setShowHorizontalSeparators(boolean pShowSeparators)
setShowVerticalSeparators(boolean pShowSeparators)
```

There are 2 new helper methods to scroll desired column or row position programmatically.

```java
scrollToColumnPosition(int column)
```

```java
scrollToRowPosition(int row)
```

## Sample Apps

- This repository has an Sample Application of TableView.
Expand Down
Binary file added TableView-landscape-static.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,7 @@
package com.evrencoskun.tableviewsample.tableview.popup;

/**
* Created by evrencoskun on 21.01.2018.
*/

public class RowHeaderLongPressPopup {}

0 comments on commit fc5ccb8

Please sign in to comment.