如何使按钮随水平滚动条移动?

发布于 2024-11-17 23:08:12 字数 1310 浏览 2 评论 0原文

我的背景中有一张地图图片,底部有一个按钮,我想用水平滚动条进行滚动。它在开始时与屏幕右侧对齐,我想将其保留在那里。这可能吗?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:id="@+id/mapBackground">
<HorizontalScrollView android:id="@+id/horizontalScrollView1"
    android:layout_height="fill_parent"
    android:scrollbars="none" android:layout_width="fill_parent">
<LinearLayout android:layout_width="fill_parent" android:id="@+id/linearLayout1"
    android:background="@drawable/large_map" android:layout_height="fill_parent"
    android:orientation="vertical"
    android:gravity="bottom">
<LinearLayout android:id="@+id/linearLayout4" android:layout_width="fill_parent"
    android:layout_height="400dp">
</LinearLayout>
<LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout5"
   android:layout_width="320dp" android:gravity="right">
<Button android:background="@drawable/bt_play_circle"
    android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/playButton"></Button>
</LinearLayout>
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>

I have a picture of a map in the background with a button on the bottom and I want to make this scroll with the horizontal scroll bar. It is aligned to the right of the screen at the start and I would like to keep it there. Is this possible?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:id="@+id/mapBackground">
<HorizontalScrollView android:id="@+id/horizontalScrollView1"
    android:layout_height="fill_parent"
    android:scrollbars="none" android:layout_width="fill_parent">
<LinearLayout android:layout_width="fill_parent" android:id="@+id/linearLayout1"
    android:background="@drawable/large_map" android:layout_height="fill_parent"
    android:orientation="vertical"
    android:gravity="bottom">
<LinearLayout android:id="@+id/linearLayout4" android:layout_width="fill_parent"
    android:layout_height="400dp">
</LinearLayout>
<LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout5"
   android:layout_width="320dp" android:gravity="right">
<Button android:background="@drawable/bt_play_circle"
    android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/playButton"></Button>
</LinearLayout>
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

待天淡蓝洁白时 2024-11-24 23:08:12

您希望在滚动时按钮保留在地图的右侧吗?
将按钮放置在 Horizo​​ntalScrollView 之外。
例如,您可以使用RelativeLayout而不是顶部的LinearLayout。

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
    <HorizontalScrollView>
    ...
    </HorizontalScrollView>
    <Button 
    android:id="@+id/playButton"
    android:background="@drawable/bt_play_circle"
    android:layout_height="wrap_content" 
    android:layout_width="wrap_content"
    android:layout_alignParentRight="true"
    />

</RelativeLayout>

You want the button to stay on the right side over the map while you are scrolling?
Place the button outside the HorizontalScrollView.
You could for example use RelativeLayout instead of the top LinearLayout.

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
    <HorizontalScrollView>
    ...
    </HorizontalScrollView>
    <Button 
    android:id="@+id/playButton"
    android:background="@drawable/bt_play_circle"
    android:layout_height="wrap_content" 
    android:layout_width="wrap_content"
    android:layout_alignParentRight="true"
    />

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