上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 55 下一页
  2019年8月3日
摘要: 1) 画笔设置 Paint.Style.STROKE 中空模式 paint = new Paint(); //新建一个画笔对象 paint.setAntiAlias(true);//抗锯齿功能 paint.setColor(Color.RED); //设置画笔颜色 paint.setStyle(Pa 阅读全文
posted @ 2019-08-03 19:17 激流勇进1 阅读(417) 评论(0) 推荐(0) 编辑
摘要: # Uncomment this line to define a global platform for your projectuse_frameworks!(http://www.my516.com) source 'https://github.com/CocoaPods/Specs.git 阅读全文
posted @ 2019-08-03 19:16 激流勇进1 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 新建一个页面FirstScreen.dartmain.dart改动代码 导入import 'dart:ui' as ui;import 'package:flutter_module/FirstScreen.dart';12修改//void main() => runApp(MyApp());voi 阅读全文
posted @ 2019-08-03 19:16 激流勇进1 阅读(178) 评论(0) 推荐(0) 编辑
摘要: platform :ios, '9.0'target 'myproject' do end #新添加的代码flutter_application_path = '../'eval(File.read(File.join(flutter_application_path, '.ios', 'Flutt 阅读全文
posted @ 2019-08-03 19:15 激流勇进1 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: ViewController.m #import "ViewController.h"#import <Flutter/Flutter.h>#include "GeneratedPluginRegistrant.h"#import "SettingViewController.h" @interfa 阅读全文
posted @ 2019-08-03 19:15 激流勇进1 阅读(323) 评论(0) 推荐(0) 编辑
  2019年8月2日
摘要: @Override public void transform(TransformInvocation transformInvocation) throws TransformException, InterruptedException, IOException { long start = S 阅读全文
posted @ 2019-08-02 20:59 激流勇进1 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 将实际执行的Transform换成了MatrixTraceTransform public static void inject(Project project, def variant) { //获取Matrix trace的gradle配置参数 def configuration = proje 阅读全文
posted @ 2019-08-02 20:59 激流勇进1 阅读(219) 评论(0) 推荐(0) 编辑
摘要: Appium 服务器参数 使用方法: node . [标志]服务器标志 所有的标志都是可选的,但是有一些标志需要组合在一起才能生效。 <expand_table>标志 默认值 描述 例子--shell null 进入 REPL 模式--localizable-strings-dir en.lproj 阅读全文
posted @ 2019-08-02 20:59 激流勇进1 阅读(114) 评论(0) 推荐(0) 编辑
摘要: global driver# 元素定位driver.find_element_by_id("id") # id定位driver.find_element_by_name("name") # name定位driver.find_element_by_link_text("text") # 链接名定位d 阅读全文
posted @ 2019-08-02 20:59 激流勇进1 阅读(243) 评论(0) 推荐(0) 编辑
摘要: JSBridge类管理暴露给前端方法,前端调用的方法应该在此类中注册才可使用。register的实现是从Map中查找key是否存在,不存在则反射取得对应class中的所有方法,具体方法是在BridgeImpl中定义的,方法包括三个参数分别为WebView、JSONObject、CallBack。如果 阅读全文
posted @ 2019-08-02 20:59 激流勇进1 阅读(111) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 55 下一页