If you are using butterknife and you want to specify two different layouts, portrait and landscape with different views, how do you do that? Cuz you don't want to try to bind a view that does not exist.
Use @Nullable on the binding or use two different objects for landscape/portrait.
Most helpful comment
Use
@Nullableon the binding or use two different objects for landscape/portrait.