- 博客(7)
- 资源 (5)
- 收藏
- 关注
原创 Bad notification for startForeground
处理步骤:权限问题 : <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />Android 8.0以上需要Notification需要设置个Channel下面2处都需要注意设置channelId2.1: 接收通知 Notification.Builder builder; if (Build.VERSION.SDK_INT >= B
2021-11-26 16:14:34
8565
原创 dialog 刘海屏、水滴屏、全面屏 全屏显示
// 关键代码Window window = dialog.getWindow(); if (window != null) { window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); window.getDecorView().setPadding(0, 0, 0, 0);
2020-06-01 17:31:16
2249
2
原创 greendao 集成记录
参考链接地址: https://www.jianshu.com/p/b017ca5fe0abhttps://www.cnblogs.com/ssqhan/p/8082690.html配置Gradle buildscript { repositories { jcenter() mavenCentral() // 添加远程仓库地址...
2020-04-20 15:42:09
275
原创 com.google.android.material.tabs.TabLayout 选择tab 加粗字体加大
引用: https://blog.csdn.net/qq_34906385/article/details/93524163 <com.google.android.material.tabs.TabLayoutandroid:id="@+id/tablayout"android:layout_width=“match_parent”android:layout_height="...
2020-04-10 19:01:52
6417
转载 Android RecyclerView实现头部悬浮吸顶效果
参考修改链接: https://www.jianshu.com/p/dcfde6e997e2github下载地址: https://github.com/donkingliang/GroupedRecyclerViewAdapter修改地址:主要是去androidx.recyclerview:recyclerview 引用v7自带的recyclerview...
2019-10-31 15:30:23
1645
原创 java 发送邮件带附件
/**发送email/public class EmailUtil {/*toEmail 接收邮箱subject 主题content 内容userName 发送邮箱账号password 发送邮箱密码 (163是授权码)fileList 附件fromEmail 发送邮箱*/public static void sendAttachmentM...
2019-08-15 10:56:07
577
原创 double 去科学计数法显示
/*** double 转 String 去科学计数法** @param d double值* @param a 需要保留小数点后位数* @return*/public final static String doubleToString(double d, int a) {BigDecimal d1 = new BigDecimal(Double.toString(d));B...
2019-05-15 11:48:30
3593
NestedScrollView + TabLayout 实现高仿淘宝商品详情页
2018-10-25
tablayout+recyclerview 实现仿淘宝、京东商品详情滑动切换tab效果
2020-10-28
GroupedRecyclerViewAdapter.zip
2019-10-31
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人