Android
fufuhong
嵌入式开发男一枚
展开
-
Android基础
在开发中常用到类型转换。 1.long与int直接转换 long bigValue = 99L; int squashed = (int)(bigValue); 2.字符串转换其它类型 整数=Integer.parseInt(字符串) 小数= Double. parseDouble (字符串) 3.其它类型转字符串 字符串=String.valueOf(其它类型) 字符串比较不要原创 2018-01-19 22:33:56 · 230 阅读 · 0 评论 -
Android Studio 界面布局
1 相对 布局 RelativeLayout 相对布局的 XML 元素是, 相对布局的特点是可以让控件之间互相确定 关系,这样可以保证在屏幕的局部范围内几个控件之间的关系不受外部影响。 具体实例来学习它的用法。 xmlns: tools= = "http://schemas.android.com/tools" xmlns: app= = "http://schema原创 2018-01-19 22:37:55 · 5483 阅读 · 0 评论