为单个用户设置自定义短信铃声

时间:2016-06-19 05:40:42

标签: android android-settings

我想在接收用户的短信时设置自定义铃声,例如“演示”。是否可以为单个用户设置自定义铃声?我正在尝试这个,但无法达到我的要求

 Error:      Summary: NoSuchElement
 Detail: An element could not be located on the page using the given search parameters.
 class: org.openqa.selenium.NoSuchElementException

1 个答案:

答案 0 :(得分:0)

这是我以前为联系人设置铃声的方式:

 Cursor c =...; // query contact cursor
    int dataIndex = c.getColumnIndexOrThrow(Contacts._ID);
    String contactId = c.getString(dataIndex);
    Uri uri = Uri.withAppendedPath(Contacts.CONTENT_URI, contactId);

    ContentValues values = new ContentValues();
    values.put(Contacts.CUSTOM_RINGTONE, mRingtoneUri.toString());
    getContentResolver().update(uri, values, null, null);