新手请问android 相对布局有关问题如题,布局中Button D没有显示出来,求高手解决~多谢~

新手请教android 相对布局问题如题,布局中Button D没有显示出来,求高手解决~谢谢~,在线等RelativeLayouta

新手请教android 相对布局问题如题,布局中Button D没有显示出来,求高手解决~谢谢~,在线等
<RelativeLayout 
  android:id="@+id/RelativeLayout01"
  android:layout_width = "wrap_content"
  android:layout_height = "wrap_content"
  >
  <Button 
  android:id="@+id/A"
  android:text="@string/A"
android:layout_width = "wrap_content"
  android:layout_height = "wrap_content"
  />
   
  <Button 
  android:id="@+id/B"
  android:text="@string/B"
android:layout_width = "wrap_content"
  android:layout_height = "wrap_content"
  android:layout_toRightOf="@+id/A"
  />
  <Button 
  android:id="@+id/C"
  android:text="@string/C"
android:layout_width = "wrap_content"
  android:layout_height = "wrap_content"
  android:layout_below="@+id/A"
  />
  <Button 
  android:id="@+id/D"
  android:text="@string/D"
android:layout_width = "wrap_content"
  android:layout_height = "wrap_content"
  android:layout_above="@+id/B"
  android:layout_toRightOf="@+id/C"
  />

[解决办法]

探讨
<RelativeLayout
android:id="@+id/RelativeLayout01"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
>
<Button
android:id="@+id/A"
……