2010年3月9日火曜日

右端と左端にボタンを設置したい時のレイアウト




<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<Button android:id="@+id/btWrite"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="write"
/>

<Button android:id="@+id/btCancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="cancel"
android:layout_alignParentRight="true"
/>
</RelativeLayout>





0 件のコメント:

コメントを投稿