<TextView android:id="@+id/firstview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#ff0000" android:text="第一个Textview" /> <TextView android:id="@+id/second" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#00ff00" android:text="第二个textview" android:layout_toRightOf="@id/firstview" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#00ff00" android:text="第三个textview" android:layout_below="@id/firstview" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#00ff00" android:text="第四个" android:layout_alignRight="@id/second" android:layout_below="@id/second" />
以上包含相对布局中几种简单的属性,截图如下
创新互联为客户提供专业的网站设计制作、成都做网站、程序、域名、空间一条龙服务,提供基于WEB的系统开发. 服务项目涵盖了网页设计、网站程序开发、WEB系统开发、微信二次开发、成都手机网站制作等网站方面业务。<TextView android:id="@+id/firstview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#ff0000" android:text="hello" android:textSize="50sp" /> <TextView android:id="@+id/second" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#0000ff" android:text="view" android:layout_alignBaseline="@id/firstview" android:layout_toRightOf="@id/firstview" />
android:layout_alignBaseline="@id/firstview"
上面这行代码是对其到基准线的意思,什么是基准线,基准线就相当于四线格中的第三条线。效果图如下
如图所示,那条绿色的线就是基准线
与父空间边缘对其
//android:layout_alignParentRight="true"
上一行代码的属性值只能为true或者false,因为一个控件他只能有一个父控件
执行该代码之后,hello就会到达屏幕 的右侧。
android:layout_centerInParent="true"//出现在父控件的中央位置 android:layout_centerHorizontal="true"//处于水平方向的中央位置上 android:layout_centerVertical="true"//垂直方向的
Android4.2新特性
//android:layout_alignEnd="@id/firstview"//对其控件的尾部或者start <TextView android:id="@+id/firstview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#00ff00" android:text="hello" /> <TextView android:id="@+id/secondview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#ff0000" android:layout_below="@id/firstview" android:layout_alignEnd="@id/firstview" android:text="abc" /> //android:layout_alignParentEnd="true"与父控件的尾部对其
Android登陆框布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="15dp" > <TextView android:id="@+id/lableView" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="登录界面" android:gravity="center" /> <EditText android:id="@+id/usernameText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_below="@id/lableView" android:hint="username" /> <EditText android:id="@+id/passwordText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignRight="@id/usernameText" android:layout_alignLeft="@id/usernameText" android:layout_below="@id/usernameText" android:hint="password" android:inputType="textPassword" /> <Button android:id="@+id/cancelButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="取消" android:layout_below="@id/passwordText" android:layout_alignParentRight="true" /> <Button android:id="@+id/okButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@id/cancelButton" android:layout_toLeftOf="@id/cancelButton" android:text="确定" /> </RelativeLayout>
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
文章标题:Android相对布局RelativeLayout详解-创新互联
网页路径:https://www.cdcxhl.com/article8/djjpop.html
成都网站建设公司_创新互联,为您提供小程序开发、网站设计、App设计、ChatGPT、手机网站建设、外贸网站建设
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联