我有2個TextViews。第一個是centred
,第二個對齊父級的最右邊。TextView輕微移動
當我更新Second TextView
中的文字時,它使first TextView
略微向左移動,然後回到原來的位置。
我不知道發生了什麼事
這是我的.xml文件
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/MC_title"
android:layout_width="wrap_content"
android:layout_height="160dp"
android:layout_centerInParent="true"/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginRight="16dp"
android:layout_marginTop="22dp" />
</RelativeLayout>
請只更新其所有內容的XML?至少在第一個TextView中,似乎缺少一些東西。謝謝。 – fasteque