Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.01 KB | None | 0 0
  1. public static List<Operator> getOperatorList() {
  2. List<Operator> operatorList = new ArrayList<>();
  3. // KODE TELKOMSEL
  4. operatorList.add(new Operator("0811", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  5. operatorList.add(new Operator("0812", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  6. operatorList.add(new Operator("0813", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  7. operatorList.add(new Operator("0821", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  8. operatorList.add(new Operator("0822", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  9. operatorList.add(new Operator("0823", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  10. operatorList.add(new Operator("0852", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  11. operatorList.add(new Operator("0853", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  12. operatorList.add(new Operator("0851", "tsel", "1", R.drawable.ic_telkomsel, "Telkomsel"));
  13. // KODE INDOSAT
  14. operatorList.add(new Operator("0814", "isat", "2", R.drawable.ic_indosat, "Indosat"));
  15. operatorList.add(new Operator("0815", "isat", "2", R.drawable.ic_indosat, "Indosat"));
  16. operatorList.add(new Operator("0816", "isat", "2", R.drawable.ic_indosat, "Indosat"));
  17. operatorList.add(new Operator("0855", "isat", "2", R.drawable.ic_indosat, "Indosat"));
  18. operatorList.add(new Operator("0856", "isat", "2", R.drawable.ic_indosat, "Indosat"));
  19. operatorList.add(new Operator("0857", "isat", "2", R.drawable.ic_indosat, "Indosat"));
  20. operatorList.add(new Operator("0858", "isat", "2", R.drawable.ic_indosat, "Indosat"));
  21. // KODE XL
  22. operatorList.add(new Operator("0817", "xl", "3", R.drawable.ic_xl, "XL"));
  23. operatorList.add(new Operator("0818", "xl", "3", R.drawable.ic_xl, "XL"));
  24. operatorList.add(new Operator("0819", "xl", "3", R.drawable.ic_xl, "XL"));
  25. operatorList.add(new Operator("0859", "xl", "3", R.drawable.ic_xl, "XL"));
  26. operatorList.add(new Operator("0877", "xl", "3", R.drawable.ic_xl, "XL"));
  27. operatorList.add(new Operator("0878", "xl", "3", R.drawable.ic_xl, "XL"));
  28. // KODE TRI
  29. operatorList.add(new Operator("0895", "three", "5", R.drawable.ic_tri, "Tri"));
  30. operatorList.add(new Operator("0896", "three", "5", R.drawable.ic_tri, "Tri"));
  31. operatorList.add(new Operator("0897", "three", "5", R.drawable.ic_tri, "Tri"));
  32. operatorList.add(new Operator("0898", "three", "5", R.drawable.ic_tri, "Tri"));
  33. operatorList.add(new Operator("0899", "three", "5", R.drawable.ic_tri, "Tri"));
  34. // KODE SMART
  35. operatorList.add(new Operator("0881", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  36. operatorList.add(new Operator("0882", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  37. operatorList.add(new Operator("0883", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  38. operatorList.add(new Operator("0884", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  39. operatorList.add(new Operator("0885", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  40. operatorList.add(new Operator("0886", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  41. operatorList.add(new Operator("0887", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  42. operatorList.add(new Operator("0888", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  43. operatorList.add(new Operator("0889", "smartfren", "6", R.drawable.ic_smartfren, "Smartfren"));
  44. //KODE AXIS
  45. operatorList.add(new Operator("0838", "axis", "7", R.drawable.ic_axis, "Axis"));
  46. operatorList.add(new Operator("0831", "axis", "7", R.drawable.ic_axis, "Axis"));
  47. operatorList.add(new Operator("0832", "axis", "7", R.drawable.ic_axis, "Axis"));
  48. operatorList.add(new Operator("0833", "axis", "7", R.drawable.ic_axis, "Axis"));
  49. return operatorList;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement