Android:滚动条出现在组件下方而不是组件上

发布于 2025-01-01 10:56:10 字数 1161 浏览 2 评论 0原文

我有一个表格,我在其中添加了垂直和垂直的表格。水平滚动条。水平滚动条出现在表格最后一行的底部。因此,表格的边框不可见。我希望它出现在表格最后一行的下方。我尝试添加边距,但没有任何效果。垂直滚动也是如此。这是我的 xml:

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

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:scrollbars="horizontal|vertical" android:layout_weight="1">

    <HorizontalScrollView android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:layout_marginTop="10dp" android:layout_marginBottom="10dp" > 

        <TableLayout android:id="@+id/browseTable" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:layout_marginBottom="20dp"
            android:background="#FF0000" android:stretchColumns="1,2,3">
        </TableLayout>    
    </HorizontalScrollView>
</ScrollView>

这是结果: 在此处输入图像描述

非常感谢任何帮助热线。

I have a table to which I have added a vertical & horizontal scrollbars. The horizontal scrollbars appears on the bottom on the last row of the table. Due to this the border of the table isn't visible. I want it to appear below the last row of the table. I tried adding margins, but nothing worked. Same is with vertical scrolling too. This is my xml :

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

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:scrollbars="horizontal|vertical" android:layout_weight="1">

    <HorizontalScrollView android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:layout_marginTop="10dp" android:layout_marginBottom="10dp" > 

        <TableLayout android:id="@+id/browseTable" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:layout_marginBottom="20dp"
            android:background="#FF0000" android:stretchColumns="1,2,3">
        </TableLayout>    
    </HorizontalScrollView>
</ScrollView>

And this is the result :
enter image description here

Any helpline is highly appreciative.

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

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

发布评论

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

评论(1

誰認得朕 2025-01-08 10:56:10

现在我明白你在寻找什么了。我尝试通过在滚动和水平滚动视图中使用图像视图来获得解决方案,其工作正常。它可能适用于您的表格布局,也可能不适用于您的表格布局,请对其进行测试。

在 XML 文件中的表格布局中添加以下行。

android:padding="5dip"

让我知道它是否有效。

Now i understood what you are looking for. I tried and got solution by using image view inside Scroll and Horizontal Scroll views, its working fine. It may or may not work with your Table Layout, test it.

Add below line in your Table Layout in XML file.

android:padding="5dip"

Let me know is it working or not.

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