我有这个标题:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:padding="5dip">    
 <Button android:id="@+id/home"
  android:layout_width="wrap_content" android:layout_height="wrap_content"
  android:text="Home"
/>
 <Button android:id="@+id/questions"
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content"
  android:text="My Questions"
 /> 
<Button android:id="@+id/questions"
 android:layout_width="wrap_content" android:layout_height="wrap_content"
 android:text="Questions"
android:layout_toRightOf="@+id/home"  />  
 <Button android:id="@+id/businesses"
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content"
  android:text="Businesses"
android:layout_toRightOf="@+id/businesses"
 />  
 <Button android:id="@+id/learn"
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content"
  android:text="Learn"
  android:layout_toRightOf="@+id/learn"
 />  
 <Button android:id="@+id/extra_help"
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content"
  android:text="Help"
  android:layout_toRightOf="@+id/learn"
/>  
</RelativeLayout>
并且由于某种原因,按钮显示 50% 彼此叠加在一起,每个都覆盖了另一个的一半。
知道我的布局有什么问题吗?
谢谢!