为什么顶部相对布局中的 android:layout_centerHorizontal="true" 不起作用,但在代码中的子项中起作用?
我的外部布局是相对的,其他代码如下。屏幕方向是一个因素吗?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/twenty" >
<ImageView
android:id="@+id/wait_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="@drawable/text_waitingforplayers" />
<ImageView
android:id="@+id/text_baught"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/wait_text"
android:background="@drawable/text_youhavebought" />
<TextView
android:id="@+id/used_bingo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/wait_text"
android:layout_toRightOf="@id/text_baught"
android:text="1333" />
<ImageView
android:id="@+id/bingo_cards"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/wait_text"
android:layout_toRightOf="@id/used_bingo"
android:background="@drawable/text_bingocards" />
<ImageView
android:id="@+id/ballas"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/bingo_cards"
android:background="@drawable/balls" />
<ImageView
android:id="@+id/login_claim"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/ballas"
android:background="@drawable/text_logintoclaim" />
</RelativeLayout>