Android examples for android.content:ContentValues
get ContentValues for Long
//package com.java2s; import android.content.ContentValues; public class Main { private static ContentValues mConv; public static ContentValues getConvLong(String key, Long value) { if (mConv != null) { mConv = null;/*from w w w . j av a2 s. c o m*/ } mConv = new ContentValues(); mConv.put(key, value); return mConv; } }