GithubHelp home page GithubHelp logo

Comments (3)

ISchwarz23 avatar ISchwarz23 commented on June 16, 2024 1

Since the version 0.9.5 which is available since today there is a more simple way to do this. All you need to do now is to call notifyDataSetChanged() on the TableDataAdapter. Here is the same example like above but with the new functionality.

public class MainActivity extends Activity {

    @Override
    protected void onCreate(final Bundle savedInstanceState) {
        final List<Car> cars = new ArrayList<>();

        final SortableCarTableView carTableView = (SortableCarTableView) findViewById(R.id.tableView);
        CarTableDataAdapter carDataAdapter = new CarTableDataAdapter(this, cars);
        carTableView.setDataAdapter(carDataAdapter);

        final Button addButton = (Button) findViewById(R.id.add_button);
        addCarButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(final View v) {
                cars.add(new Car());
                carDataAdapter.notifyDataSetChanged();
            }
        });
    }

}

from sortabletableview.

ISchwarz23 avatar ISchwarz23 commented on June 16, 2024

Yes, you can do so by setting the new data to an adapter and set this adapter to the TableView.
Here is a simple example how to do so:

public class MainActivity extends Activity {

    @Override
    protected void onCreate(final Bundle savedInstanceState) {
        final List<Car> cars = new ArrayList<>();

        final SortableCarTableView carTableView = (SortableCarTableView) findViewById(R.id.tableView);
        carTableView.setDataAdapter(new CarTableDataAdapter(this, cars));

        final Button addButton = (Button) findViewById(R.id.add_button);
        addCarButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(final View v) {
                cars.add(new Car());
                carTableView.setDataAdapter(new CarTableDataAdapter(MainActivity.this, carList));
            }
        });
    }

}

from sortabletableview.

KagayamaKaede avatar KagayamaKaede commented on June 16, 2024

Hi, Can you add a method to get the adapter.
For example: tableView.getDataAdapter()

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.