Users.java revision eb1062abaed1314c71cf80584fe8bcb8b2a6ba53
1package com.android.example.bindingdemo.vo;
2
3import com.android.example.bindingdemo.R;
4
5public class Users {
6    public static final User[] robots = new User[]{
7            new User("romain", "guy", R.drawable.romain, User.ROBOT),
8    };
9    public static final User[] toolkities = new User[]{
10            new User("chet", "haase", R.drawable.chet, User.TOOLKITTY),
11            new User("adam", "powell", R.drawable.adam, User.TOOLKITTY),
12            new User("alan", "viverette", R.drawable.alan, User.TOOLKITTY),
13            new User("chris", "craik", R.drawable.chris, User.TOOLKITTY),
14            new User("george", "mount", R.drawable.george, User.TOOLKITTY),
15            new User("john", "reck", R.drawable.john, User.TOOLKITTY),
16            new User("rob", "tsuk", R.drawable.rob, User.TOOLKITTY),
17            new User("Teng-Hui", "Zhu", R.drawable.tenghui, User.TOOLKITTY),
18            new User("yigit", "boyar", R.drawable.yigit, User.TOOLKITTY),
19
20
21    };
22}
23