Giter VIP home page Giter VIP logo

Comments (6)

ShamylZakariya avatar ShamylZakariya commented on August 18, 2024 2

Well, as far as I can tell I've fixed the crash on an empty adapter. I've pushed https://github.com/ShamylZakariya/StickyHeaders/releases/tag/v0.7.11 and it's available for import.

from stickyheaders.

ShamylZakariya avatar ShamylZakariya commented on August 18, 2024

I'll look into this.

from stickyheaders.

wenchaosong avatar wenchaosong commented on August 18, 2024

ok

from stickyheaders.

ShamylZakariya avatar ShamylZakariya commented on August 18, 2024

I'm pretty certain this fixes the issue. I want to do a little more testing before I push a new build. Can you post your adapter code?

from stickyheaders.

wenchaosong avatar wenchaosong commented on August 18, 2024

I was use the sample, i did not new a adapter, i just change init method and it was appeared

from stickyheaders.

wenchaosong avatar wenchaosong commented on August 18, 2024
public class AddressBookDemoActivity extends DemoActivity implements RandomUserLoader.OnLoadCallback {

    private static final String TAG = AddressBookDemoActivity.class.getSimpleName();
    AddressBookDemoAdapter adapter = new AddressBookDemoAdapter();

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        recyclerView.setLayoutManager(new StickyHeaderLayoutManager());
        recyclerView.setAdapter(adapter);
    }

    @Override
    protected void onResume() {
        super.onResume();

        getRandomUserLoader().load(this);
    }

    @Override
    public void onRandomUsersDidLoad(List<Person> randomUsers) {

        recyclerView.post(() -> adapter.setPeople(randomUsers));
    }

    @Override
    public void onRandomUserLoadFailure(final Throwable t) {

        Snackbar snackbar = Snackbar.make(recyclerView, "Unable to load addressbook", Snackbar.LENGTH_LONG);
        snackbar.setAction(R.string.demo_addressbook_load_error_action, v -> showRandomUserLoadError(t.getLocalizedMessage()));
        snackbar.show();
    }

    private void showRandomUserLoadError(String message) {
        AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setTitle(R.string.demo_addressbook_load_error_dialog_title)
                .setMessage(message)
                .setPositiveButton(android.R.string.ok, null)
                .show();
    }

    private RandomUserLoader getRandomUserLoader() {
        return ((StickyHeadersDemoApp) getApplicationContext()).getRandomUserLoader();
    }
}

from stickyheaders.

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.