80,479
社区成员
发帖
与我相关
我的任务
分享
public static void setRingForOPhone(ContentResolver cr, Uri uri) throws ClassNotFoundException, SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException {
Class cls = Class.forName("android.provider.Settings$Profile");
Method method = cls.getMethod("setRingTone", new Class[] {ContentResolver.class, Uri.class});
method.invoke(cls, new Object[] {cr, uri});
}