摘要:
使状态栏透明:Theme.xml文件中添加 <!--设置状态栏透明--><item name="android:windowTranslucentStatus">true</item><!--设置无标题栏效果-> <style name="Theme.Test" parent="Theme.Mate 阅读全文
摘要:
1. 设置状态栏为透明状态 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);//设置状态栏为透明状态 2.ActionBar自由实现 //ActionBar的格式一般都是固定的,也可以自定义,但是自定义 阅读全文
摘要:
1. ctrl+shift+enter 等号左右自动空格,并添加分号。 2. ctrl+f , ctrl + r 批量替换 3. ctrl+ n 查找所有 4. ctrl + F12 在当前文件中搜索方法 5. ctrl+ shift + F 在当前项目中的所有文件中搜索方法 向上/向下查找关键字: 阅读全文
摘要:
git 提交代码至远程服务器 git add git commit ctrl+X ctrl+y enter 查看所有分支:git branch -a git push origin HEAD:refs/for/【分支名】 阅读全文
摘要:
从服务器上拉代码的步骤: 查看ssh:// git clone ssh:// 切换分支的步骤(一般从服务器上拉取了新的项目代码后需要进行此操作): git branch -a 查看所有分支 git checkout 【分支名称】 更新本地代码(从服务器上拉取最新代码):git push(到指定分支上 阅读全文
摘要:
Intent 消息传递 * 普通信息传递(基本数据类型)* 对象传递 * 实现Serializable接口对象//来自于JVM,适用于Java平台开发 * 实现Parcelable接口对象//来自于AVM,性能比Serializable高,因此android开发建议使用Parcelable 阅读全文
摘要:
Room 注解:对sqlite数据库的封装 导入Room支持://build.gradle //roomdef room_version="2.2.0-alpha01"implementation "androidx.room:room-runtime:$room_version" //room A 阅读全文
摘要:
android中添加Button默认为紫色,如需修改为灰色,对theme.xml做修改即可 修改前: 修改后: 代码:Theme.MaterialComponents.DayNight.Bridge 阅读全文
摘要:
sqlite 指令:与mysql操作指令类似 创建/打开数据库:.open 【table_name】 查看当前数据库:.database 查看所有表名称: .table 创建表: create table 【table_name】(【表字段】); 删除表: drop table 【table_nam 阅读全文
摘要:
修改: <style name="Theme.Test" parent="Theme.MaterialComponents.DayNight.DarkActionBar">为: <style name="Theme.Test" parent="Theme.MaterialComponents.Day 阅读全文