我想知道如何获得这个结果:
http://img718.imageshack.us/img718/6173/screenshot20100411at126.png
这是我尝试过的:
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#CCCCCC"
android:orientation="horizontal"
android:layout_weight="0">
<Button android:id="@+id/btn_cancel"
android:text="@string/cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5px"
android:gravity="left"
/>
<Button android:id="@+id/btn_save"
android:text="@string/save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5px"
android:layout_toRightOf="@id/btn_cancel"
android:gravity="right"/>
</RelativeLayout>
我尝试使用 layout_width 属性并将它们设置为填充父母双方但没有工作,如果有人有想法......谢谢!