我正在尝试使用水平不可滚动文本进行布局,如果有足够的空间或者它转到下一行,每个textView都会尝试放入同一行。我不确定如何描述它,但我的意思是这样的:
+=================+
|(text1) (text2) |
|(abc) (def) (ghi)|
|(longertext) |
| |
| |
| |
| |
+=================+
我甚至不知道从哪里开始或如何寻找类似的东西,所以任何帮助都将受到高度赞赏。提前谢谢。
答案 0 :(得分:1)
你应该看看at this question。它指向Romain Guy的FlowLayout实现。它将完全符合您的要求。
答案 1 :(得分:0)
将此用于您的textview
android:ellipsize="marquee"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"