H264,你不知道的小技巧-腾讯云开发者社区-腾讯云
这篇文章写的非常好
这里仅做几点补充
init.lua内容:
-- Set enable_lua to false to disable Lua support.
enable_lua trueif not enable_lua thenreturn
end-- If false and Wireshark was start…
2.显示地图:
Java代码
Uri uri Uri.parse(“geo:38.899533,-77.036476”);
Intent it new Intent(Intent.Action_VIEW,uri);
startActivity(it);
3.从google搜索内容
Java代码
Intent intent new Intent();
intent.setAction(Intent.ACTION_WEB_SEARCH);
intent.pu…