Coder Social home page Coder Social logo

table responsiveness about sortabletableview HOT 3 OPEN

sanakalam avatar sanakalam commented on August 17, 2024
table responsiveness

from sortabletableview.

Comments (3)

ISchwarz23 avatar ISchwarz23 commented on August 17, 2024

Hi @sanakalam,

you should set the table size to the screen size (match-parent) and then use the TableColumnWeightModel. There you can give a weight for each column.

Best regards,
Ingo

from sortabletableview.

sanakalam avatar sanakalam commented on August 17, 2024

Table xml:
<com.sortabletableview.recyclerview.SortableTableView
android:id="@+id/table_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:tableView_headerBackgroundColor="?attr/colorPrimary"
app:tableView_horizontalDividerColor="#ccc"
app:tableView_horizontalDividerSize="2"
app:tableView_verticalDividerColor="#ccc"
app:tableView_verticalDividerSize="2"
app:tableView_headerElevation="10dp"
app:tableView_swipeToRefreshIndicatorColor="?attr/colorAccent">
</com.sortabletableview.recyclerview.SortableTableView>
table width java:
TableColumnWeightModel tableColumnModel = new TableColumnWeightModel(7);
tableColumnModel.setColumnWeight(0, 10);
tableColumnModel.setColumnWeight(1, 10);
tableColumnModel.setColumnWeight(2, 10);
tableColumnModel.setColumnWeight(3, 10);
tableColumnModel.setColumnWeight(4, 10);
tableColumnModel.setColumnWeight(5, 10);
tableColumnModel.setColumnWeight(6, 10);
tableView.setColumnModel(tableColumnModel);

Output:
image
if i set hardcoded width it works.

from sortabletableview.

ISchwarz23 avatar ISchwarz23 commented on August 17, 2024

Hi @sanakalam,
then check the width/height of your parent layout(s). The match_parent is not doing what you expect if e.g. the parent has size wrap_content. In the example application you can see, that it is working correctly: https://github.com/ISchwarz23/SortableTableView/blob/master/app/src/main/res/layout/activity_main.xml

from sortabletableview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.