2022年9月24日
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content 阅读全文
posted @ 2022-09-24 17:16 laremehpe 阅读(5) 评论(0) 推荐(0) 编辑
2022年9月22日
摘要: 第一步ps打开图片 选择图像->画布大小 修改宽高各加2px,修改后如下图 随便选一个选框工具, 然后按住ctrl,同时用鼠标左键点击图层里面的图片(注意是图片!!!) 然后你会发项图片四周被选中 右击图片选择反向 然后放大图片,或者不放大,随你便, 长按画笔工具,会弹出画笔种类,选择铅笔 画笔硬度 阅读全文
posted @ 2022-09-22 14:58 laremehpe 阅读(891) 评论(0) 推荐(0) 编辑
2022年9月1日
摘要: //如果仅读取自己app内目录,无需调用下面的方法动态申请权限public void requestPermission() { String[] permissions = new String[]{ Manifest.permission.READ_EXTERNAL_STORAGE, Manif 阅读全文
posted @ 2022-09-01 09:54 laremehpe 阅读(315) 评论(0) 推荐(0) 编辑
2022年8月30日
摘要: package xyz.laremehpe.comment; public class Comments { StringBuilder template; final String holder1 = "←"; final String holder2 = "↓"; final String ho 阅读全文
posted @ 2022-08-30 15:11 laremehpe 阅读(124) 评论(0) 推荐(0) 编辑
2022年8月29日
摘要: public class shell { static void shell(String sh) throws Exception { try{ Process su = Runtime.getRuntime().exec("su"); DataOutputStream outputStream 阅读全文
posted @ 2022-08-29 13:38 laremehpe 阅读(149) 评论(0) 推荐(0) 编辑
2022年8月27日
摘要: For Android Studio 1.5: Right click on res -> new -> Image Asset On Asset type choose Action Bar and Tab Icons Choose the image path Give your image a 阅读全文
posted @ 2022-08-27 14:26 laremehpe 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 按钮点击触发: public void execute(View view) throws Exception { FragmentManager fm = getFragmentManager(); FragmentTransaction ft = fm.beginTransaction(); f 阅读全文
posted @ 2022-08-27 14:14 laremehpe 阅读(259) 评论(0) 推荐(0) 编辑
摘要: public class MainActivity extends AppCompatActivity { private static final int NOTIFICATION_ID = 0; AlarmManager alarmManager; Intent AlarmReceiver; P 阅读全文
posted @ 2022-08-27 12:02 laremehpe 阅读(23) 评论(0) 推荐(0) 编辑
2022年8月24日
摘要: 输入路径: 计算机\HKEY_CLASSES_ROOT\Directory\Background\shell\cmd\command 新建项名称cmd 右键cmd新建项command: 选中command 双击右边窗口中的默认 - > 弹出对话框填写cmd.exe /s /k pushd "%V" 阅读全文
posted @ 2022-08-24 16:13 laremehpe 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 添加系统变量: 对应的目录: 找到系统变量下面的path 点击编辑,添加两条记录: 然后保存退出即可 安装cnpm: npm install -g cnpm --registry=https://registry.npm.taobao.org 添加环境变量: 找到系统变量下面的path: 保存即可 阅读全文
posted @ 2022-08-24 16:01 laremehpe 阅读(36) 评论(0) 推荐(0) 编辑