上一页 1 ··· 9 10 11 12 13 14 下一页

2019年2月3日

shape 图形

摘要: 主要属性: <?xml version="1.0"encoding="utf-8"?><shape > <corners /> <gradient /> <padding /> <size /> <solid /> <stroke /></shape> 1、corners属性(圆角): <corne 阅读全文

posted @ 2019-02-03 17:31 赵子隆 阅读(153) 评论(0) 推荐(0) 编辑

全局变量

摘要: 创建一个继承于Application类的全局类 配置中要加: 在Activity中: 阅读全文

posted @ 2019-02-03 16:35 赵子隆 阅读(91) 评论(0) 推荐(0) 编辑

打印 输出 debug

摘要: System.out.print(); 阅读全文

posted @ 2019-02-03 16:23 赵子隆 阅读(67) 评论(0) 推荐(0) 编辑

XMPP openfire Smack 即时通讯

摘要: 重新整理下这篇文章。 这篇文章的主要任务是使用AndroidStudio,通过Openfire,利用XMPP协议完成一个可以即时通讯、拥有好友系统的聊天软件。 一、服务器配置与相关库 理论不多说,只谈怎么操作。下面先说三个工具。 1、mysql服务器(版本5.7.25) 首先电脑要安装好mysql, 阅读全文

posted @ 2019-02-03 16:03 赵子隆 阅读(1410) 评论(0) 推荐(0) 编辑

2019年1月22日

View 常用方法

摘要: id layout_width layout_height layout_margin、layout_marginTop minWidth minHeight background layout_gravity:left、right 阅读全文

posted @ 2019-01-22 02:20 赵子隆 阅读(158) 评论(0) 推荐(0) 编辑

2019年1月21日

约束布局 ConstraintLayout

摘要: app:layout_constraintVertical_bias="0.5"app:layout_constraintHorizontal_bias="0.5" app:layout_constraintBottom_toBottomOf="parent" 阅读全文

posted @ 2019-01-21 14:30 赵子隆 阅读(87) 评论(0) 推荐(0) 编辑

2019年1月20日

数据存储 共享参数 SharedPreferences

摘要: 先要声明文件名和操作方式,第一个参数:文件名为"share.xml",第二个参数:私有模式SharedPreferences shared = getSharedPreferences("share", MODE_PRIVATE);SharedPreferences.Editor editor = 阅读全文

posted @ 2019-01-20 17:44 赵子隆 阅读(114) 评论(0) 推荐(0) 编辑

文本工具 TextUtils 字符串

摘要: 常用方法: isEmpty:判断字符串是否为空值 getTrimmedLength:获取字符串去除头尾空格之后的长度 isDigitsOnly:判断字符串是否全部由数字组成 ellipsize:如果字符串超长,则返回按规则截断并添加省略号的字符串 使用方式: TextUtils.isEmpty(st 阅读全文

posted @ 2019-01-20 16:17 赵子隆 阅读(161) 评论(0) 推荐(0) 编辑

2019年1月15日

LinearLayout 线性布局

摘要: android:orientation 设置布局管理器内组件的排列方式,可设置为 horizontal (水平排列)、vertical (垂直排列) android:gravity 设置布局管理器内组件的对齐方式,该属性值可设为 top(顶部对齐) 、bottom(底部对齐) 、left(左对齐) 阅读全文

posted @ 2019-01-15 15:44 赵子隆 阅读(195) 评论(0) 推荐(0) 编辑

2019年1月13日

屏幕分辨率 高度 宽度

摘要: 想想方法获得DisplayMetrics对象;有两种方法 public static int getScreenWidth(Context context){ WindowManager wm = (WindowManager)context.getSystemService(Context.WIN 阅读全文

posted @ 2019-01-13 16:55 赵子隆 阅读(190) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 下一页

导航