/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/ |
H A D | DismissAnimationHelper.java | 30 import com.android.car.notification.template.CarNotificationBaseViewHolder; 75 void onDismiss(CarNotificationBaseViewHolder viewHolder); in onDismiss() 86 void animateDismiss(CarNotificationBaseViewHolder viewHolder, in animateDismiss() 93 CarNotificationBaseViewHolder viewHolder, in animateDismiss() 115 void animateRestore(CarNotificationBaseViewHolder viewHolder, float velocityX) { in animateRestore() 132 float calculateAlphaValue(CarNotificationBaseViewHolder viewHolder, float translateX) { in calculateAlphaValue() 142 float calculateTranslateDistance(CarNotificationBaseViewHolder viewHolder, float moveDeltaX) { in calculateTranslateDistance()
|
H A D | HeadsUpEntry.java | 25 import com.android.car.notification.template.CarNotificationBaseViewHolder; 36 private CarNotificationBaseViewHolder mCarNotificationBaseViewHolder; 66 void setViewHolder(CarNotificationBaseViewHolder viewHolder) { in setViewHolder() 70 CarNotificationBaseViewHolder getViewHolder() { in getViewHolder()
|
H A D | CarNotificationTypeItem.java | 23 import com.android.car.notification.template.CarNotificationBaseViewHolder; 125 public CarNotificationBaseViewHolder getViewHolder(View view, in getViewHolder() 163 CarNotificationBaseViewHolder holder) { in bind()
|
H A D | CarNotificationItemTouchListener.java | 36 import com.android.car.notification.template.CarNotificationBaseViewHolder; 103 private CarNotificationBaseViewHolder mViewHolder; 193 checkArgument(viewHolderAtPoint instanceof CarNotificationBaseViewHolder); in onInterceptTouchEvent() 194 mViewHolder = (CarNotificationBaseViewHolder) viewHolderAtPoint; in onInterceptTouchEvent()
|
H A D | CarNotificationViewAdapter.java | 34 import com.android.car.notification.template.CarNotificationBaseViewHolder; 184 ((CarNotificationBaseViewHolder) holder).setHideDismissButton(true); in onBindViewHolderImpl() 197 carNotificationTypeItem.bind(alertEntry, false, (CarNotificationBaseViewHolder) holder); in onBindViewHolderImpl()
|
/aosp12/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/ |
H A D | CarNotificationTypeItemTest.java | 33 import com.android.car.notification.template.CarNotificationBaseViewHolder; 244 CarNotificationBaseViewHolder viewHolder = item.getViewHolder(viewTemplate, in assertProperties()
|
H A D | CarNotificationViewAdapterTest.java | 45 import com.android.car.notification.template.CarNotificationBaseViewHolder; 552 assertThat(((CarNotificationBaseViewHolder) vh).shouldHideDismissButton()).isFalse(); in onBindViewHolder_groupExpanded_shouldNotHideDismissButton() 569 assertThat(((CarNotificationBaseViewHolder) vh).shouldHideDismissButton()).isFalse(); in onBindViewHolder_groupCollapsed_shouldNotHideDismissButton() 585 assertThat(((CarNotificationBaseViewHolder) vh).shouldHideDismissButton()).isTrue(); in onBindViewHolder_groupSummary_shouldHideDismissButton()
|
/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/template/ |
H A D | BasicNotificationViewHolder.java | 29 public class BasicNotificationViewHolder extends CarNotificationBaseViewHolder {
|
H A D | CallNotificationViewHolder.java | 29 public class CallNotificationViewHolder extends CarNotificationBaseViewHolder {
|
H A D | InboxNotificationViewHolder.java | 30 public class InboxNotificationViewHolder extends CarNotificationBaseViewHolder {
|
H A D | NavigationNotificationViewHolder.java | 29 public class NavigationNotificationViewHolder extends CarNotificationBaseViewHolder {
|
H A D | CarNotificationBaseViewHolder.java | 43 public abstract class CarNotificationBaseViewHolder extends RecyclerView.ViewHolder { class 107 CarNotificationBaseViewHolder(View itemView, in CarNotificationBaseViewHolder() method in CarNotificationBaseViewHolder
|
H A D | EmergencyNotificationViewHolder.java | 32 public class EmergencyNotificationViewHolder extends CarNotificationBaseViewHolder {
|
H A D | GroupSummaryNotificationViewHolder.java | 36 public class GroupSummaryNotificationViewHolder extends CarNotificationBaseViewHolder {
|
H A D | ProgressNotificationViewHolder.java | 34 public class ProgressNotificationViewHolder extends CarNotificationBaseViewHolder {
|
H A D | GroupNotificationViewHolder.java | 55 public class GroupNotificationViewHolder extends CarNotificationBaseViewHolder
|
H A D | MessageNotificationViewHolder.java | 46 public class MessageNotificationViewHolder extends CarNotificationBaseViewHolder {
|