Back to project page android-webview-example.
The source code is released under:
Apache License
If you think the Android project android-webview-example listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.significantfiles.mrcounter.db; //from w ww . ja v a 2 s.co m import android.content.ContentResolver; import android.content.ContentValues; import android.net.Uri; public class ContentResolverUtil { public static final void insert(final ContentResolver resolver, final String uriStr, final ContentValues values ) { final Uri uri = Uri.parse(uriStr); resolver.insert(uri, values); } }