网站大量收购闲置独家精品文档,联系QQ:2885784924

《Android之界面布局.ppt

  1. 1、本文档共42页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
相对布局RelativeLayout 相对布局(RelativeLayout) 是一种非常灵活的布局方式,能够通过指定界面元素与其他元素的相对位置关系,确定界面中所有元素的布局位置 特点:能够最大程度保证在各种屏幕类型的手机上正确显示界面布局 在众多布局中,推荐使用相对布局 RelativeLayout android:id=@+id/RelativeLayout01 android:layout_width=fill_parent android:layout_height=fill_parent xmlns:android=/apk/res/android TextView android:id=@+id/label android:layout_height=wrap_content android:layout_width=fill_parent android:text=用户名: /TextView EditText android:id=@+id/entry android:layout_height=wrap_content android:layout_width=fill_parent android:layout_below=@id/label /EditText /RelativeLayout 需要设置id Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile . Copyright 2004-2011 Aspose Pty Ltd. 相对布局RelativeLayout 相对布局(RelativeLayout) 实现如图效果步骤 添加TextView控件(“用户名”),相对布局会将TextView控件放置在屏幕的最上方 然后添加EditText控件(输入框)并声明该控件的位置在TextView控件的下方,相对布局会根据TextView的位置确定EditText控件的位置 之后添加第一个Button控件(“取消”按钮),声明在EditText控件的下方,且在父控件的最右边 最后,添加第二个Button控件(“确认”按钮),声明该控件在第一个Button控件的左方,且与第一个Button控件处于相同的水平位置 TextView android:id=@+id/label android:layout_height=wrap_content android:layout_width=fill_parent android:text=用户名: /TextView EditText android:id=@+id/entry android:layout_height=wrap_content android:layout_width=fill_parent android:layout_below=@id/label /EditText Button android:id=@+id/cancel android:layout_height=wrap_content android:layout_width=wrap_content android:layout_alignParentRight=true android:layout_marginLeft=10dip android:layout_below=@id/entry android:text=取消 /Button Button android:id=@+id/ok android:layout_height=wrap_content android:layout_width=wrap_content android:layout_toLeftOf=@id/cancel android:layout_alignTop=@id/cancel android:text=确认/Button Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile . Copyright 2004-2011 Aspose Pty Ltd. 相对布局RelativeLayout 相对布局(RelativeLayout) 设置两个控件之间的布局属性说明 属性值 android:layout_above android:layout_below android:layout_toLeftOf android:layout_toRightOf android:layout_alignTop android:layout_alignBottom android:layout_alignLeft an

文档评论(0)

you9391 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档