设置 Android ZoomButtonsController 对齐方式?

发布于 2024-12-02 16:51:31 字数 88 浏览 0 评论 0原文

我在我的自定义视图中实现了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

活雷疯 2024-12-09 16:51:31

ZoomButtonsController 可以在 XML 文件中定义,并且可以相应地定位,例如。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

<ZoomControls android:id="@+id/zoomControls1" 
          android:layout_height="wrap_content" 
          android:layout_width="wrap_content" 
          android:layout_alignParentTop="true"
          android:layout_alignParentRight="true">
</ZoomControls>

</RelativeLayout>

这种布局将使您的缩放控件按照属性的定义位于屏幕的右上角,

android:layout_alignParentTop="true"
android:layout_alignParentRight="true"

因此基本上您可以通过将视图嵌套在布局中来对齐视图(例如RelativeLayout,LinearLayout等)

ZoomButtonsController can be defined in XML files and can be positioned accordingly , for eg.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

<ZoomControls android:id="@+id/zoomControls1" 
          android:layout_height="wrap_content" 
          android:layout_width="wrap_content" 
          android:layout_alignParentTop="true"
          android:layout_alignParentRight="true">
</ZoomControls>

</RelativeLayout>

This layout will make your zoomcontrols in top-right of the screen as defined by the attributes ,

android:layout_alignParentTop="true"
android:layout_alignParentRight="true"

so basically you can align your views by nesting them in a Layout (like RelativeLayout , LinearLayout etc.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文