摘要: 1.git init //初始git 2.git clone http://xxxx/vosa-element-config.git //克隆项目 3.git remote add origin http:/xxxx/vosa-element-config.git //连接远程项目 4.git br 阅读全文
posted @ 2020-05-29 17:43 青竹玉简 阅读(3480) 评论(0) 推荐(0) 编辑
摘要: public class MyApplication extends Application { public static MyApplication INSTANCE; @Override public void onCreate() { super.onCreate(); INSTANCE = 阅读全文
posted @ 2020-05-29 16:06 青竹玉简 阅读(1568) 评论(0) 推荐(0) 编辑
摘要: 方法一 Intent intent = new Intent(A.this,B.class); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent 阅读全文
posted @ 2020-05-29 14:33 青竹玉简 阅读(529) 评论(0) 推荐(0) 编辑