摘要:
通过vue与android交互拔打电话时 使用 if (url.startsWith("tel:")) { Intent intent= new Intent(Intent.ACTION_VIEW, Uri.parse(url)); startActivity(intent); return tru 阅读全文
摘要:
id type is not supported. Only int or long is acceptable for id notifyDataSetChanged()数据不更新原因:mAdapter内部的List指向的是内存中的对象,而不是数据库。所以改变数据库中的数据,并不会影响该对象。参考 阅读全文