blob: b754c527af9957a1bdd934faad885896639024c0 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.todos;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.widget.TextView;
/**
* Created by alexfandrianto on 4/12/16.
*/
public class TodoListViewHolder extends RecyclerView.ViewHolder {
private View myView;
public TodoListViewHolder(View itemView) {
super(itemView);
myView = itemView;
}
public void bindTodoList(TodoList todoList, View.OnClickListener listener) {
// TODO(alexfandrianto): Now might be a good time to set data in myView.
final TextView name=(TextView)myView.findViewById(R.id.todo_list_name);
name.setText(todoList.getName());
final TextView completedStatus=(TextView)myView.findViewById(R.id.todo_list_completed);
completedStatus.setText(computeCompleted(todoList));
final TextView timeAgo=(TextView)myView.findViewById(R.id.todo_list_time);
timeAgo.setText(computeTimeAgo(todoList));
myView.setBackgroundColor(todoList.getDone() ? 0xFFCCCCCC : 0xFFFFFFFF);
myView.setTag(todoList.getKey());
myView.setOnClickListener(listener);
}
private String computeTimeAgo(TodoList todoList) {
return "" + todoList.getUpdatedAt();
}
private String computeCompleted(TodoList todoList) {
if (todoList.getDone()) {
return "Done!";
} else if (todoList.numTasks == 0) {
return "Needs Tasks";
} else if (todoList.numCompleted == 0) {
return "Not Started";
} else {
return todoList.numCompleted + " of " + todoList.numTasks;
}
}
}