Android examples for android.content:ContentValues
get ContentValues for Int
//package com.java2s; import android.content.ContentValues; public class Main { private static ContentValues mConv; public static ContentValues getConvInt(String key, int value) { if (mConv != null) { mConv = null;// w w w . ja v a 2 s . c om } mConv = new ContentValues(); mConv.put(key, value); return mConv; } }