android
文章平均质量分 80
zhanggy92
这个作者很懒,什么都没留下…
展开
-
bitmap拼接、截图
/** * 横向拼接 * * @param first * @param second * @return */ private Bitmap add2Bitmap(Bitmap first, Bitmap second) { int width = first.getWidth() + second.getWidth(); int height = Math.max(fir转载 2016-11-01 10:21:44 · 2382 阅读 · 0 评论 -
获取联系人
/* 2 * 根据电话号码取得联系人姓名 3 */ 4 public static String getContactNameByPhoneNumber(Context context, String address) { 5 String[] projection = { ContactsContract.PhoneLookup.DIS转载 2016-11-26 11:09:16 · 275 阅读 · 0 评论