在你布局时,采用RelativeLayout,然后选定一个参照物,比如一个
id="+@id/textview1"
layout_width="fill_parent"
layout_height="grap_content"的textview
你就可以在button的属性里控制它的位置layout_below设置在textview下方layout_toleftof
设置在textview左边layout_alighTop 设置顶端与textview顶端对齐
居中
LinearLayout,FrameLayout:
android:layout_gravity="center"
RelativeLayout:
android:layout_centerInParent="true"