-1
只是想知道我們是否可以使用android代碼(本機應用程序)來做類似this的事情,或者甚至是更好的方法來處理單個屏幕上的多個列。我搜索了很多,但我找到的所有東西都是通過CSS & JS而不是android代碼在單個屏幕上管理10-15列(Android應用程序)
只是想知道我們是否可以使用android代碼(本機應用程序)來做類似this的事情,或者甚至是更好的方法來處理單個屏幕上的多個列。我搜索了很多,但我找到的所有東西都是通過CSS & JS而不是android代碼在單個屏幕上管理10-15列(Android應用程序)
<LinearLayout orientation="horizontal">
<LinearLayout orientation="vertical>
<!-- first column fixed -->
</LinearLayout>
<HorizontalScrollView>
<LinearLayout orientation="horizontal">
<LinearLayout orientation="vertical>
<!-- second column -->
</LinearLayout>
<LinearLayout orientation="vertical>
<!-- third column -->
</LinearLayout>
<!-- etc -->
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
你明白了。
爲什麼不嘗試使用HorizontalScrollView和其中的項目是單列(每列可以是單個LinearLayout與其他意見)?
我試過這樣做,但有2個問題。首先左頭也移動。其次,每個單獨的行滾動而不是整個表格 –
我的意思是一個HorizontalScrollView包含許多元素,而不是每個列的單個滾動視圖 –