我有一些文本要在出现错误时显示。我可以做这样的事情:
<TextView
android:id="@+id/error_message"
android:textColor="@color/red"
android:visibility="invisible"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Error: something is wrong. "
/>
但是这个元素只会占用屏幕上的空间并使该空间空白。有没有办法让它不占用空白空间,当它显示出来时,它下面的元素会向下移动以便腾出空间?
谢谢!