Is there a way to edit the display name in a contact list? Especially helpful correcting a typing error. It seems reasonably easy to change everything else except the display name.
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.