- 1、本文档共45页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
物联网移动终端开发;第2章Android界面开发;2.2常用布局;为什么要进行界面布局?;在Android界面开发中,控件的布局非常重要,布局可以用来管理控件的分布和大小。不同的布局管理可以产生不同的布局效果,开发者需要根据不同的应用场景选择合适的布局管理,本节我们将介绍一些常用的布局方式。;2.2.1线性布局
线性布局通过LinearLayout类来实现,LinearLayout是前述ViewGroup的子类,是一个视图容器,可以向其中添加不同的控件。LinearLayout将控件一个挨着一个排列起来。如图所示的登录页面中,QQ号/微信号/手机号输入框、密码输入框、登录按钮、登录遇到问题提示文本框纵向顺序排列,就可以通过将这四个控件放入LinearLayout中来实现。;线性布局排列的顺序有纵向排列和横向排列两种。;LinearLayout常用的XML属性;android:orientation=vertical
android:gravity=center;LinearLayout子元素常用的XML属性;案例2.1使用线性布局
如图所示的是一个简化的登录界面的一部分,有一个文本框会提示用户输入用户名,后面紧跟着一个编辑框供用户输入具体的内容。;?xmlversion=1.0encoding=utf-8?
LinearLayoutxmlns:android=/apk/res/android
android:layout_width=match_parent
android:layout_height=match_parent
android:orientation=horizontal
TextView
android:id=@+id/txt_username
android:layout_width=wrap_content
android:layout_height=wrap_content
android:gravity=left
android:textSize=18sp
android:textColor=#FF0000
android:text=用户名:
android:focusable=false/
EditText
android:id=@+id/etxt_content
android:layout_width=200dp
android:layout_height=wrap_content
android:gravity=center
android:hint=在这里输入用户名...
android:textSize=18sp/
/LinearLayout;案例2.2使用嵌套的线性布局
如何设计右图所示的界面?;?xmlversion=1.0encoding=utf-8?
LinearLayoutxmlns:android=/apk/res/android
android:layout_width=match_parent
android:layout_height=match_parent
android:orientation=vertical
!--一个水平线性布局--
LinearLayout
android:layout_width=match_parent
android:layout_height=wrap_content
android:orientation=horizontal
TextView
android:id=@+id/txt_username
android:layout_width=80dp
android:layout_height=wrap_content
android:gravity=right
android:textSize=18sp
android:textColor=#FF0000
android:text=用户名:
android:focusable=false/
EditT
文档评论(0)