dayView image clipchildren="false" not working
See original GitHub issueI added an image view as a background in each day cell. the background can be bigger than a single cell since I am setting its dimensions programmatically. I also do not want it to get cut by each day cell so I am setting clipToPadding="false"
and clipChildren="false"
to each parent and sub parent layout. This is not working. I think its because the day view layout is not directly included in the calendar layout but is referenced by passing it through cv_dayViewResource
. Is this correct? is there a way I can still manage to let each day background overflow into its neighbors?
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
dayView image clipchildren="false" not working #103 - GitHub
I added an image view as a background in each day cell. the background can be bigger than a single cell since I...
Read more >clipChildren is not working even though set to false?
In my application I am trying to move images ...
Read more >Viewgroup Clipchildren False Not Working - ADocLib
In my application I am trying to move images using animation. When I try to animate the image is cutting even though I...
Read more >The Bad Seed (1956) - Turner Classic Movies - TCM
A woman suspects that her perfect little girl is a ruthless killer.
Read more >Android – clipChilren set to false still clipping - iTecNote
I am using a translate animation to move an egg(ImageButton) outside of the carton(ImageView), but it is consistently clipping, so I looked all...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sorry for the confusion. The fix makes it unnecessary to set the
clipChildren
property. The library set this to true in the past but this has since been removed long before0.4.0
. I think you have a different use case. Glad you figured something out.Ah I see - thanks for the explanation and response!