Giter VIP home page Giter VIP logo

Comments (10)

eshkoliGilad avatar eshkoliGilad commented on August 15, 2024 3

@The-RobinHood

The only thing I did was setting sizeForChildAtPosition() static and then in you onBind() function just calling:

holder.mImageView.getLayoutParams().width = GreedoLayoutManager.sizeForChildAtPosition(position).getWidth();
holder.mImageView.getLayoutParams().height = GreedoLayoutManager.sizeForChildAtPosition(position).getHeight();

You may consider using this on your main container also if this doesn't help you.

I know it is not the perfect solution, but it was the quickest one.

from greedo-layout-for-android.

eshkoliGilad avatar eshkoliGilad commented on August 15, 2024

Never mind, got that working.

from greedo-layout-for-android.

tbruyelle avatar tbruyelle commented on August 15, 2024

@eshkoliGilad I have the same issue, when my ImageView is wrapped with another layout it is disorted. How did you fix that please ?

from greedo-layout-for-android.

eshkoliGilad avatar eshkoliGilad commented on August 15, 2024

@tbruyelle

I've just made sizeForChildAtPosition() method of GreedoLayoutManager static and I call it in OnBind in the adapter:

    holder.mImageView.getLayoutParams().width = GreedoLayoutManager.sizeForChildAtPosition(position).getWidth();
    holder.mImageView.getLayoutParams().height = GreedoLayoutManager.sizeForChildAtPosition(position).getHeight();

from greedo-layout-for-android.

tbruyelle avatar tbruyelle commented on August 15, 2024

@eshkoliGilad Ok so you had to update the library code. In that case your issue is still valid. I opened a similar one here #16

from greedo-layout-for-android.

The-RobinHood avatar The-RobinHood commented on August 15, 2024

@eshkoliGilad It will helpful if you share GreedoLayoutManager class, I'm also struggling to over come this issue.
thanks

from greedo-layout-for-android.

The-RobinHood avatar The-RobinHood commented on August 15, 2024

@eshkoliGilad can you share your GreedoLayoutManager class, if you don't mind?

from greedo-layout-for-android.

The-RobinHood avatar The-RobinHood commented on August 15, 2024

@eshkoliGilad hey, it will really helpful to me if you share your GreedoLayoutManager class, I'm stuck with this issue for a week. thanks

from greedo-layout-for-android.

abhimuktheeswarar avatar abhimuktheeswarar commented on August 15, 2024

Just change the method to public & static. It works.
@The-RobinHood can u please tell us, how u solved the issue ? #21

from greedo-layout-for-android.

olik79 avatar olik79 commented on August 15, 2024

Just changing the method to static will not work, as it accesses instance variables which of course aren't valid in a static context.

What I did instead was to give the GreedoLayoutSizeCalculator (which can be retrieved by GreedoLayoutManager#getSizeCalculator()) to my adapter. I just added a member variable and a setter. After that you can just do the following within your onBindViewHolder(...) method:

    Size imageViewSize = mSizeCalculator.sizeForChildAtPosition(position);
    holder.itemView.getLayoutParams().width = imageViewSize.getWidth();
    holder.itemView.getLayoutParams().height = imageViewSize.getHeight();

I still don't really like this because I feel like it doesn't really match the concept of adapters and layout managers, but if I remember correctly I didn't have to change any library code.

from greedo-layout-for-android.

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.