
Android
clanbeair
这个作者很懒,什么都没留下…
展开
-
高德定位sdk在android的使用
1.在 http://lbs.amap.com/api/android-location-sdk/download/ 下载高德的sdk 我在这里只选择了定位sdk2.申请key登陆 http://lbs.amap.com/ 后进入控制台创建新应用若是不知道sha1值则参考 http://blog.youkuaiyun.com/xinpengfei521/article/detai原创 2017-01-12 15:45:33 · 1413 阅读 · 0 评论 -
libdpush_v2_3.so:unauthorized access to "libssl.so"
app在打开时弹窗提示libdpush_v2_3.so:unauthorized access to "libssl.so",libmsc.so:text relocations,libdpush_v2_3.so:unauthorized access to "libcrypto.so"之后发现是因为百度推送的sdk和讯飞的sdk版本过老不支持最新的Android7.0 。原创 2017-06-08 18:53:34 · 1739 阅读 · 0 评论 -
Activity通过Intent传递对象和参数
Intent myIntent = new Intent(); Bundle bundle = new Bundle(); bundle.putInt(Constant.INTENT_ID, event.getOrderId()); bundle.putInt("GroupId",event.getGr原创 2017-07-20 16:08:26 · 317 阅读 · 0 评论 -
Android中Activity返回参数
Bundle bundle = new Bundle(); bundle.putInt(Constant.INTENT_ID, orderId); startActivity(PayReasonSelectActivity.class, bundle, SELECT_PAY_REASON);OrderDetailActivity打原创 2017-07-24 11:49:06 · 789 阅读 · 0 评论