我有一些XML,看起來像這樣設置視圖能見度走了保持其他意見
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text"
android:id="@+id/Text"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textSize="34sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Call"
android:id="@+id/callText"
android:layout_below="@+id/Text"
android:layout_alignLeft="@+id/Text"
android:layout_alignStart="@+id/Text"
/>
/>
現在我想設置TextView的id爲Text
到了,但是當我做這個TextView的id爲callText
也消失了,我想要的是將Text
設置爲GONE,然後只有callText
向上移動,並保持可見?
我該怎麼做?
感謝
這可能是因爲你基於文本對齊它。 – Zarwan
@Zar我知道這就是爲什麼它發生,但是,我想保留該參考,但沒有它也消失 – spenf10