Home | History | Annotate | Download | only in dialer

Lines Matching refs:view

20 import android.view.View;
30 public final View callTypeView;
35 private PhoneCallDetailsViews(TextView nameView, View callTypeView,
45 * Create a new instance by extracting the elements from the given view.
47 * The view should contain three text views with identifiers {@code R.id.name},
51 public static PhoneCallDetailsViews fromView(View view) {
52 return new PhoneCallDetailsViews((TextView) view.findViewById(R.id.name),
53 view.findViewById(R.id.call_type),
54 (CallTypeIconsView) view.findViewById(R.id.call_type_icons),
55 (TextView) view.findViewById(R.id.call_count_and_date),
56 (TextView) view.findViewById(R.id.label));
62 new View(context),