gpt4 book ai didi

android - 如何以正确的方式在水平 ScrollView 中放置一个很长的表格布局?

转载 作者:太空狗 更新时间:2023-10-29 16:43:38 25 4
gpt4 key购买 nike

我尝试查看大量示例和帖子,但没有一个符合我的问题。

我需要制作一个非常长(水平)的表格,其中包含许多列,因此无法在单个屏幕中显示。而且我不想弄脏表格,因为以这种方式显示我的表格很重要。

我已经在下面粘贴了我的 XML 布局(包括主要重要的)

问题是如果我删除代码:

android:fillViewport="true"

Horizo​​ntalScrollView 然后是我在其中的表格,被挤压在一个地方,尤其是在它的左侧。它甚至没有使用太多 Horizo​​ntalScrollView 容器区域。

而且,如果我使用此代码,则此 Horizo​​ntalScrollView 会在其中显示我的整个表格 - 列会被挤压以确保它们适合此 ScrollView 。

我只想让这个 ScrollView 只显示适合屏幕宽度的表格布局的内容,这样我就可以滚动剩余的列。但是现在,我似乎什么也做不了附近。

那么我该如何解决我的问题呢?我做错了什么吗?

这也是我的 XML 布局。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>

<HorizontalScrollView
android:id="@+id/horizontalScrollView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="horizontal"
android:fillViewport="true">
<TableLayout
android:id="@+id/bot_scoreBoard"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/table_shape"
android:orientation="horizontal"
android:stretchColumns="*" >

<TableRow
android:layout_height="fill_parent"
android:layout_margin="2dp"
android:background="#ffffff"
>
<TextView
/>
....
more than 16 columns of made using TextView
....
</TableRow>
</TableLayout>

</HorizontalScrollView>

</LinearLayout>

最佳答案

我得到了答案。那是因为我在用

 android:stretchColumns="*" 

在表格布局中。

加上我的 TextView,它们是列,需要一些特定的宽度大小而不仅仅是

android:layout_width="fill_parent" or "wrap_content"

就是这些问题。

关于android - 如何以正确的方式在水平 ScrollView 中放置一个很长的表格布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13674470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com