项目作者: evrencoskun

项目描述 :
TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
高级语言: Java
项目地址: git://github.com/evrencoskun/TableView.git
创建时间: 2017-06-13T04:29:44Z
项目社区:https://github.com/evrencoskun/TableView

开源协议:MIT License

下载




TableView for Android



TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
TableView relies on a separate model object to hold and represent the data it displays. This repository also contains a sample app that is
designed to show you how to create your own TableView in your application.



Full video »







Features

  • Each column width value can be calculated automatically considering the largest one.
  • Setting your own model class to be displayed in a table view easily.
  • TableView has an action listener interface to listen user touch interaction for each cell.
  • TableView columns can be sorted in ascending or descending order.
  • Hiding & showing the rows and columns is pretty easy.
  • Filtering by more than one data.
  • Pagination functionality.

What’s new

You can check new implementations of TableView on the release page.

Table of Contents

Installation

To use this library in your Android project, just add the following dependency into your module’s build.gradle:

Use Jitpack implementation

  1. Check Jitpack use :

    1. allprojects {
    2. repositories {
    3. ...
    4. maven { url 'https://jitpack.io' }
    5. }
    6. }
  2. Add implementation in project build :

    1. implementation 'com.github.evrencoskun:TableView:v0.8.9.4'

Documentation

Please check out the project’s wiki.

Sample Apps

Donations

This project needs you! If you would like to support this project’s further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated (and I love food, coffee and beer). Thank you!

PayPal

  • Donate 5 $: Thank’s for creating this project, here’s a coffee (or some beer) for you!
  • Donate 10 $: Wow, I am stunned. Let me take you to the movies!
  • Donate 15 $: I really appreciate your work, let’s grab some lunch!
  • Donate 25 $: That’s some awesome stuff you did right there, dinner is on me!
  • Or you can also choose what you want to donate, all donations are awesome!

Contributors

Contributions of any kind are welcome! I would like to thank all the contributors for sharing code and
making TableView a better product.

If you wish to contribute to this project, please refer to our contributing guide.

License

  1. MIT License
  2. Copyright (c) 2021 Evren Coşkun
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in all
  10. copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  17. SOFTWARE.