将 LayoutParams 重置为 XML 中定义的内容
我找不到执行此操作的方法,但是有没有办法重置项目上的 LayoutParams ?
在设备旋转时,我更改布局参数。当我返回纵向时,我想将它们更改回 XML 值。我是否只需定义与 XML 中的内容相匹配的新布局参数?
I can't find a method that does this, but is there a way to reset the LayoutParams on an item?
On rotation of the device, I change the layout params. When I turn back to portrait, I want to change them back to the XML values. Do I just have to define new layout params that match what is in the XML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在进行旋转之前,保存项目的初始参数,
旋转之后,当你想将它们改回来时,你可以使用你从一开始就保存的布局参数,
希望这就是你想要的:)
before you doing the Rotation , save the initialParams of your item ,
and after the rotation , when u want to change them back , u use the layoutParams that u 've saved from beginning
hope that's what you want :)