摘要: https://github.com/j2eemail/PopupWindow 阅读全文
posted @ 2017-05-20 13:56 蹭饭熊 阅读(877) 评论(0) 推荐(0)
摘要: Activity引用的XML样式配置 android:theme="@style/AppBaseTheme" <style name="AppBaseTheme" parent="AppTheme"> <item name="popupMenuStyle">@style/myPopupMenu</i 阅读全文
posted @ 2017-05-19 16:46 蹭饭熊 阅读(6788) 评论(0) 推荐(0)
摘要: https://github.com/j2eemail/Toolbar 菜单资源文件必须放在res/menu目录中。菜单资源文件必须使用<menu>标签作为根节点。除了<menu>标签外,还有另外两个标签用于设置菜单项和分组,这两个标签是<item>和<group>。 <menu>标签没有任何属性, 阅读全文
posted @ 2017-05-18 21:17 蹭饭熊 阅读(178) 评论(0) 推荐(0)
摘要: public static void main(String[] args) { int[] array = { 42, 20, 17, 13, 28, 14, 23, 15,3 }; Test test = new Test(); // test.bubbleSort(array); // test.selctionSort(array); // tes... 阅读全文
posted @ 2017-05-13 22:11 蹭饭熊 阅读(224) 评论(0) 推荐(0)
摘要: ArrayList<String> list = new ArrayList<>(); // 非线程安全,有序可重复,允许元素可以有一个或多个null、底层由数组实现、查询较快插入与与删除元素的速度慢 // jdk1.8 初始容量为10扩充容量oldCapacity + (oldCapacity > 阅读全文
posted @ 2017-05-13 09:58 蹭饭熊 阅读(146) 评论(0) 推荐(0)
摘要: 引入com.android.support:percent:25.1.0 https://github.com/j2eemail/Percent 阅读全文
posted @ 2017-05-12 12:16 蹭饭熊 阅读(119) 评论(0) 推荐(0)
摘要: 一、GsonFormat 根据JSON字符串生成JavaBean GsonFormat安装 GsonFormat使用 二、Android Parcelable code generator JavaBean序列化,快速实现Parcelable接口 Android Parcelable code ge 阅读全文
posted @ 2017-05-08 14:37 蹭饭熊 阅读(270) 评论(0) 推荐(0)
摘要: DataBinding的基本使用及RecyclerView通用适配器封装使用 https://github.com/j2eemail/DataBinding 阅读全文
posted @ 2017-05-06 16:02 蹭饭熊 阅读(159) 评论(0) 推荐(0)
摘要: https://github.com/j2eemail/CalendarView 阅读全文
posted @ 2017-04-26 08:59 蹭饭熊 阅读(151) 评论(0) 推荐(0)
摘要: https://github.com/j2eemail/MVP-Login public class UserModle{ private String userName; private String passWord; public void setUserName(String userNam 阅读全文
posted @ 2017-04-11 14:15 蹭饭熊 阅读(242) 评论(0) 推荐(0)