本文实例讲述了Android编程布局控件之AbsoluteLayout用法。分享给大家供大家参考,具体如下: AbsoluteLayout是绝对布局管理器,指的是指定组件的左上
本文实例讲述了Android编程布局控件之AbsoluteLayout用法。分享给大家供大家参考,具体如下:
AbsoluteLayout是绝对布局管理器,指的是指定组件的左上角绝对坐标来指定组件的布局
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
xmlns:android="Http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="按钮1"
android:layout_x="0px" android:layout_y="0px" />
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="按钮2"
android:layout_x="20px" android:layout_y="20px" />
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="按钮3"
android:layout_x="40px" android:layout_y="40px" />
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="按钮4"
android:layout_x="60px" android:layout_y="60px" />
</AbsoluteLayout>
运行效果截图如下:
希望本文所述对大家Android程序设计有所帮助。
您可能感兴趣的文章:Android AbsoluteLayout和RelativeLayout布局详解Android编程布局(Layout)之AbsoluteLayout用法实例分析Android编程之绝对布局AbsoluteLayout和相对布局RelativeLayout实例详解Android入门之LinearLayout、AbsoluteLayout的用法实例讲解Android布局之绝对布局AbsoluteLayout详解
--结束END--
本文标题: Android编程布局控件之AbsoluteLayout用法实例分析
本文链接: https://lsjlt.com/news/26180.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0