Android实现button居中的方法
程序员文章站
2023-11-29 22:34:46
本文实例讲述了android实现button居中的方法。分享给大家供大家参考。具体如下:
通过在main.xml 或者其他xml 布局文件中布局button的时候,选择a...
本文实例讲述了android实现button居中的方法。分享给大家供大家参考。具体如下:
通过在main.xml 或者其他xml 布局文件中布局button的时候,选择android:gravity="center_horizontal",意思是place object in the horizontal center of its container, not changing its size.我们用relativelayout 布局,这样可以使不同的组件有对齐的方式。
main.xml:
<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <textview android:id="@+id/gallerytext" android:layout_width="fill_parent" android:layout_height="wrap_content"> </textview> <gallery android:id="@+id/gallery" android:layout_width="fill_parent" android:layout_height="wrap_content"> </gallery> <button android:id="@+id/btngal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_horizontal" android:textsize="20sp" android:layout_alignparentbottom="true" android:layout_centerhorizontal="true" android:text="返回主界面"/> </relativelayout>
运行效果截图:
简单说明:
可以看到button 与gallery的对齐方式是居中对齐,也即button 与parent居中对齐。
另外,
android:gravity="center_vertical":这个是垂直居中对齐
android:gravity="bottom":放在容器的底部
android:gravity="center" :放在容器的中心
希望本文所述对大家的android程序设计有所帮助。
下一篇: ai怎么设计一款2.5d立体的博士帽?
推荐阅读
-
Android控件Spinner的使用方法(1)
-
android 设置wallpaper的操作方法
-
Android定制RadioButton样式三种实现方法
-
Android实现简单时钟View的方法
-
android popwindow实现左侧弹出菜单层及PopupWindow主要方法介绍
-
Android 实现带字母索引的侧边栏功能
-
Android开发之图形图像与动画(三)Animation效果的XML实现
-
Android实现TextView中文字链接的4种方式介绍及代码
-
Android开发之基于DialogFragment创建对话框的方法示例
-
Android使用Pull解析器解析xml文件的实现代码