Searched refs:nameView (Results 1 – 4 of 4) sorted by relevance
214 final TextView nameView = mInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local215 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()240 final TextView nameView = mInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local241 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()242 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
242 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local243 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()272 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local273 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()274 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
384 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local385 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()419 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local420 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()421 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
87 TextView nameView = (TextView)view.findViewById(R.id.name); in getView() local89 nameView.setText(info.getName()); in getView()