开发笔记
文章平均质量分 87
HiMan~
这个作者很懒,什么都没留下…
展开
-
Android开发笔记
1、去除字符串中的特殊符号 str = str.replaceAll("需要替换的字符","");//多个 str = str.replace("需要替换的字符","");//单个 根据符号截取字符串成list List list = Arrays.asList(str.split(",")); 2.android string.xml文件中添加特原创 2016-03-16 17:30:17 · 267 阅读 · 0 评论 -
TabLayout 和 RecyclerView 联动(不使用ViewPager)
支付宝示例:直接上代码:package com.lib.utils.tablayout.activity; import android.content.Context; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.design.widget.TabLay...原创 2018-06-07 13:25:37 · 6754 阅读 · 6 评论