// // Latex Project Public Licence (lppl1.3) applies // Originally written by Kwanleung Tse // First Release : 1st July, 2014 // Last Update : 27th September, 2014 // // package worker4math.hktex2; import java.util.ArrayList; import java.util.HashMap; import android.graphics.Bitmap; public class DocumentBitmap { public static final ArrayList bitmapname = new ArrayList(); public static ArrayList usedbitmap = new ArrayList(); public static HashMap bitmap = new HashMap(); public static HashMap bitmapwidth = new HashMap(); public static HashMap bitmapheight = new HashMap(); public void documentbitmap(){ bitmapname.add("leftarrow.png"); bitmapname.add("rightarrow.png"); bitmapname.add("leftendarrow.png"); bitmapname.add("rightendarrow.png"); } }