设置 Android ZoomButtonsController 对齐方式?
我在我的自定义视图中实现了 ZoomButtonsController,并一直试图弄清楚如何将其与屏幕的右下角对齐(默认情况下它与底部中间对齐),但没有任何运气。
Im implementing a ZoomButtonsController in my custom View and have been trying to figure out how to align it to the bottom right hand corner of the screen (it aligns to the bottom middle by default) but havent had any luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ZoomButtonsController 可以在 XML 文件中定义,并且可以相应地定位,例如。
这种布局将使您的缩放控件按照属性的定义位于屏幕的右上角,
因此基本上您可以通过将视图嵌套在布局中来对齐视图(例如RelativeLayout,LinearLayout等)
ZoomButtonsController can be defined in XML files and can be positioned accordingly , for eg.
This layout will make your zoomcontrols in top-right of the screen as defined by the attributes ,
so basically you can align your views by nesting them in a Layout (like RelativeLayout , LinearLayout etc.)