默认情况下,我们在eclipse中拖动控件到editor中,控件的位置将位于整个屏幕的左上角。可以使用 android:layout_gravity、android:gravity和android:width三个属性值,实现控件的九宫格定位。
Xml代码
代码如下:
ZoomControls android:id="@+id/zoomcontroller"
android:layout_gravity="bottom" android:gravity="right"
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)android:layout_width="fill_parent" android:layout_height="wrap_content" /ZoomControls
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)ZoomControls android:id="@+id/zoomcontroller"
android:layout_gravity="bottom" android:gravity="right"
android:layout_width="fill_parent" android:layout_height="wrap_content" /ZoomControls
以上代码实现了将控件置于右下角。那么如何将控件置于下方中间呢?只需要将android:gravity的值改为center即可。