我有两个文本视图,彼此相邻,有多行文字。
如何根据同时滚动其中一个来同时滚动它们?
答案 0 :(得分:0)
您可以将两个TextView
作为子项滚动视图作为父级
例如 -
<NestedScrollView ....>
<LinearLayout android:orientation="horizontal" ....>
<LinearLayout android:weight="1" ....>
<TextView android:text="Text1" ..../>
</LinearLayout >
<LinearLayout android:weight="1" ....>
<TextView android:text="Text2" ..../>
</LinearLayout >
</LinearLayout >
</NestedScrollView >
这只是一个可以修改你想要的方式的想法