Slide 10
Slide 10 text
Add View
public static void AddMe(MainActivity host, User data) {
InfoView v = (InfoView)host.getLayoutInflater().inflate(R.layout.info, nu
ViewGroup parent =((ViewGroup)host.findViewById(android.R.id.content));
bind(data);
host.addContentView(v, p);
}
private void bind(User user) {
this.user = user ;
Picasso.with(getContext()).load(user.avatar).placeholder(R.drawable.ic_launcher).into(avatar
name.setText(user.name);
time.setText(user.time);
}