上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页

2019年5月8日

广播

摘要: 原文:https://www.cnblogs.com/kexing/p/8331359.html 阅读全文

posted @ 2019-05-08 10:03 赵子隆 阅读(77) 评论(0) 推荐(0) 编辑

2019年5月7日

attrs 资源文件 自定义属性

摘要: 原文:https://blog.csdn.net/w18756901575/article/details/51396405 在res/values文件夹下新建attrs.xml文件: 使用: 获取: 获取原来android的src属性: 阅读全文

posted @ 2019-05-07 09:44 赵子隆 阅读(847) 评论(0) 推荐(0) 编辑

2019年5月6日

EditText

摘要: 1、默认文字 2、输入类型 3、光标位置 4、去除下划线 5、设置行间距 6、一开始不要显示光标(即成为焦点) 在父View加上 7、获取焦点并弹出键盘 8、点击回车键的监听 在EditText的属性上添加: java中: 9、失去焦点,并隐藏键盘 10、修改回车键的显示文字(“完成”、搜索。。。) 阅读全文

posted @ 2019-05-06 11:17 赵子隆 阅读(226) 评论(0) 推荐(0) 编辑

2019年5月5日

ArrayList 数组 初始化方法

摘要: https://blog.csdn.net/u011523796/article/details/79537055 ArrayList初始化方法: 1、Arrays.asList 2、生成匿名内部内进行初始化 3、常规方式 或者 4、Collections.ncopies 数组初始化方法: 阅读全文

posted @ 2019-05-05 11:42 赵子隆 阅读(6934) 评论(0) 推荐(0) 编辑

2019年4月30日

HTTP Retrofit 网络传输

摘要: 原文:https://www.jianshu.com/p/0fda3132cf98 Retrofit注解 请求方法 注解代码请求格式 @GET GET请求 @POST POST请求 @DELETE DELETE请求 @HEAD HEAD请求 @OPTIONS OPTIONS请求 @PATCH PAT 阅读全文

posted @ 2019-04-30 11:17 赵子隆 阅读(717) 评论(0) 推荐(0) 编辑

2019年4月25日

画布Canvas 画笔Paint

摘要: package com.example.m_evolution.View; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.RectF; imp... 阅读全文

posted @ 2019-04-25 13:46 赵子隆 阅读(404) 评论(0) 推荐(0) 编辑

2019年4月24日

View控件跟随鼠标移动

摘要: public boolean onTouch(View view, MotionEvent motionEvent) { if(motionEvent.getAction() == MotionEvent.ACTION_DOWN){ //记录按下时的数据 sx = (int) motionEvent.getRawX(); ... 阅读全文

posted @ 2019-04-24 18:20 赵子隆 阅读(199) 评论(0) 推荐(0) 编辑

ViewPager和Fragment中的View的点击事件冲突

摘要: ViewPager属于父布局,View属于子布局; 触摸事件是先到父View,再到子View,所以可以让ViewPager取消拦截事件; 或者在子View中重写函数,告诉父View不要拦截,让自己处理: 阅读全文

posted @ 2019-04-24 14:56 赵子隆 阅读(567) 评论(0) 推荐(0) 编辑

2019年4月23日

圆形图片 ImageView

摘要: package com.example.m_evolution; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.PorterDuff; im... 阅读全文

posted @ 2019-04-23 14:52 赵子隆 阅读(143) 评论(0) 推荐(0) 编辑

2019年4月21日

SwipeBackLayout 右滑退出Activity

摘要: 添加依赖: 使用代码: 具体源码分析可以参考https://www.jianshu.com/p/92b884d8471c 阅读全文

posted @ 2019-04-21 16:31 赵子隆 阅读(141) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页

导航