• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.example.bindingdemo.vo;
2 
3 import com.android.example.bindingdemo.R;
4 
5 public class Users {
6     public static final int[] ICONS = {
7             R.drawable.emo_im_angel,
8             R.drawable.emo_im_cool,
9             R.drawable.emo_im_crying,
10             R.drawable.emo_im_embarrassed,
11             R.drawable.emo_im_foot_in_mouth,
12             R.drawable.emo_im_happy,
13             R.drawable.emo_im_kissing,
14             R.drawable.emo_im_laughing,
15             R.drawable.emo_im_lips_are_sealed,
16             R.drawable.emo_im_money_mouth,
17             R.drawable.emo_im_sad,
18             R.drawable.emo_im_surprised,
19             R.drawable.emo_im_tongue_sticking_out,
20             R.drawable.emo_im_undecided,
21             R.drawable.emo_im_winking,
22             R.drawable.emo_im_wtf,
23             R.drawable.emo_im_yelling,
24     };
25     public static final User[] robots = new User[]{
26             new User("romain", "guy", R.drawable.emo_im_yelling, User.ROBOT),
27     };
28     public static final User[] toolkities = new User[]{
29             new User("chet", "haase", R.drawable.emo_im_angel, User.KITTEN),
30             new User("adam", "powell", R.drawable.emo_im_cool, User.KITTEN),
31             new User("alan", "viverette", R.drawable.emo_im_crying, User.KITTEN),
32             new User("chris", "craik", R.drawable.emo_im_embarrassed, User.KITTEN),
33             new User("george", "mount", R.drawable.emo_im_foot_in_mouth, User.KITTEN),
34             new User("john", "reck", R.drawable.emo_im_happy, User.KITTEN),
35             new User("Doris", "liu", R.drawable.emo_im_winking, User.KITTEN),
36             new User("Teng-Hui", "Zhu", R.drawable.emo_im_laughing, User.KITTEN),
37             new User("yigit", "boyar", R.drawable.emo_im_wtf, User.KITTEN),
38 
39 
40     };
41 }
42