Hi all,
to update the displayname I used this link: https://www.b4x.com/android/forum/threads/update-contact-displayname.76313/#post-484270
Is there something similar for phone?
I guess I can't use "vnd.android.cursor.item/phone" due to "numbers"
to update the displayname I used this link: https://www.b4x.com/android/forum/threads/update-contact-displayname.76313/#post-484270
B4X:
Public Sub SetDisplayName(Id As Long, Name As String)
Dim values As ContentValues
values.Initialize
values.PutString("data1", Name)
SetData("vnd.android.cursor.item/name", values, Id, True)
End Sub
Is there something similar for phone?
I guess I can't use "vnd.android.cursor.item/phone" due to "numbers"