Home | History | Annotate | Download | only in notificationlog

Lines Matching refs:view

14 import android.view.LayoutInflater;
15 import android.view.View;
16 import android.view.ViewGroup;
71 public View getView(int position, View convertView, ViewGroup parent) {
72 View view;
74 view = mInflater.inflate(R.layout.row, parent, false);
76 view = convertView;
78 bindView(view, mNotificationEvents.get(position));
79 return view;
83 private final void bindView(View view, EventLog.Event evt) {
84 TextView title = (TextView)view.findViewById(R.id.title);
85 TextView more = (TextView)view.findViewById(R.id.text);
86 TextView time = (TextView)view.findViewById(R.id.time);
87 ImageView icon = (ImageView)view.findViewById(R.id.icon);