http://blog.163.com/benben_long/blog/static/199458243201411394624170/ xmlns:android="http://schemas.android.com/apk/res/android的作用是 Android 自定义的xmlns其 ...
分类:
移动开发 时间:
2016-07-10 16:54:03
阅读次数:
277
Android界面编程
2.3.1 布局介绍
布局用于定义Activity中UI元素的排列结构,Android提供了LinearLayout线性布局、RelativeLayout相对布局 、FrameLayout帧布局 、TableLayout表格布局、AbsoluteLayout坐标布局 共五种布局,可以通过两种方式声明布局:
? 在 XML 中声明 UI 元素。Android ...
分类:
移动开发 时间:
2016-07-06 18:23:14
阅读次数:
303
E/AndroidRuntime( 1900): java.lang.StackOverflowError E/AndroidRuntime( 1900): at android.graphics.Canvas.drawText(Canvas.java:1269) E/AndroidRuntime( ...
分类:
移动开发 时间:
2016-06-27 21:30:23
阅读次数:
252
android对多个模块都要是要的UI逻辑的致辞除了fragment之外,没有别的东西可以支持了, include,merge,viewstub只能支持公用的ui,但是这个通用支持不能包含逻辑(java代码)的。 1.使用include标签 这个标签只是启动重复某个UI xml文件的作用,andro ...
分类:
移动开发 时间:
2016-06-11 14:28:48
阅读次数:
262
原创文章,如有转载,请注明出处:http://blog.csdn.net/yihui823/article/details/6702273
修正说明:
此文章是我写的第一篇,当时的确少考虑很多内容。
后来也一直没有再回头看,再后来,看到评论多是负面的,也就心懒了,这个系列就没再写下去了。
今天重新把文章修改一下。完全没有错不敢说,只是把当年漏写的一些内容再补进去吧...
分类:
移动开发 时间:
2016-05-27 11:18:39
阅读次数:
234
1.LinearLayout线性布局: 常用属性: 子类控件的排布方式:android:orientation="vertical"/"horizontal" 垂直或水平 子类控件在布局中的位置:android:gravity="center" center:水平垂直都居中;center_verti ...
分类:
移动开发 时间:
2016-05-21 09:01:37
阅读次数:
203
Android布局文件中的layout_weight属性仅在LinearLayout布局中有效。
google推荐:当设置了控件的layout_weight属性时,该控件相应的layout_width或者layout_height属性应该设置为0dp。
如果设置了控件的layout_weight属性同时,又设置了layout_width或者layout_height属性,此时有多种情况需要分析...
分类:
移动开发 时间:
2016-05-18 18:50:51
阅读次数:
255
android属性
Android功能强大,界面华丽,但是众多的布局属性就害苦了开发者,下面这篇文章结合了网上不少资料,
第一类:属性值为true或false
android:layout_centerHrizontal 水平居中
android:layout_centerVertical 垂直居中
android:layout_centerInparent...
分类:
移动开发 时间:
2016-05-13 14:51:43
阅读次数:
212
Android 布局之layout_weight解析...
分类:
移动开发 时间:
2016-05-13 04:26:05
阅读次数:
180