Android UI 中类似 Excel 的行为

发布于 2024-12-17 23:15:05 字数 181 浏览 0 评论 0原文

我正在尝试创建 Android 视图,但我很挣扎。所以希望有人可以提供帮助:

基本上它是一个表格,但最左边的列不应该是可滚动的,其余的应该是可滚动的。就像 Excel 一样。最左边的列(数字不断增加)永远不会消失,即使您滚动到第 XX 列。

关于如何实现这一点有任何线索吗?原因是最左边的列将是键列表,其余列将是值。

I am trying to create an Android View, but im struggling. So hoping someone can help:

Basically it's a table, but the leftmost column should not be scrollable, and the rest should be scrollable. Just like Excel. the leftmost column (with all the increasing numbers) never go away, even if you scroll to column XX.

Any clues on how to implement this? The reason is that the leftmost columns will be a list of keys, and the rest of the columns will be values.

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

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

发布评论

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

评论(1

深海蓝天 2024-12-24 23:15:05

A scetch of what I was attempts to do

使用我在 Ms Paint 中的 leet 技能,我画了这个东西。所以我们的想法是,当您上下滑动时……所有内容都会滚动……但是当您从左向右滑动时,只有右侧的表格会移动。左边将是静态的。

我也会在这里添加源代码:

<LinearLayout
android:id="@+id/widget60"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:scrollbars="vertical"
>
<TableLayout
android:id="@+id/schedule_stops"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
>
</TableLayout>
<HorizontalScrollView
android:id="@+id/widget69"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@id/schedule_stops"
>
<TableLayout
android:id="@+id/schedule_times"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
>
</TableLayout>
</HorizontalScrollView>
</LinearLayout>

关键是使用 Horizo​​ntalScrollView 而不是普通的 ScrollView

A scetch of what I was trying to do

Using my leet skills in Ms Paint I drew this thing. So the idea is that when you swipe up and down... everything will scroll... But when you swipe left to right only the table to the right will move. The left will be static.

I will add the source here as well:

<LinearLayout
android:id="@+id/widget60"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:scrollbars="vertical"
>
<TableLayout
android:id="@+id/schedule_stops"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
>
</TableLayout>
<HorizontalScrollView
android:id="@+id/widget69"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@id/schedule_stops"
>
<TableLayout
android:id="@+id/schedule_times"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
>
</TableLayout>
</HorizontalScrollView>
</LinearLayout>

The key was to use the HorizontalScrollView instead of the ordinary ScrollView

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