evrencoskun / TableView

TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
MIT License
3.14k stars 459 forks source link

How to change the height of corner view? #119

Closed JairoBarzola closed 6 years ago

JairoBarzola commented 6 years ago

I have this problem , in my xml of corner view I put android:layout_height="40dp" and in xml of column header the same height.

captura de pantalla 2018-05-20 a la s 20 08 53
evrencoskun commented 6 years ago

Hi @JairoBarzola ,

According to your picture, they have same height as well. fef6bb12-a346-4eb2-83ec-d3def3604d4e

It seems you didn't use the column_header_height like this. So, your tableView uses the default height values.

You can override the height value adding same dimen tags on your project.

    <!-- Overriding the default values of the tableView -->
    <dimen name="default_row_header_width">35dp</dimen>
    <dimen name="default_column_header_height">20dp</dimen>