Home
last modified time | relevance | path

Searched refs:channelName (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DChannelEditorListView.kt133 appControlRow.channelName.text = context.resources in <lambda>()
145 lateinit var channelName: TextView variable
150 channelName = requireViewById(R.id.app_name) in onFinishInflate()
160 private lateinit var channelName: TextView variable
180 channelName = requireViewById(R.id.channel_name) in onFinishInflate()
212 channelName.text = nc.name ?: "" in updateViews()
DNotificationInfo.java374 final TextView channelName = findViewById(R.id.channel_name);
376 channelName.setVisibility(View.GONE);
378 channelName.setText(mSingleNotificationChannel.getName());
DNotificationConversationInfo.java314 final TextView channelName = findViewById(R.id.parent_channel_name); in bindConversationDetails() local
315 channelName.setText(mNotificationChannel.getName()); in bindConversationDetails()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
DBiometricNotificationUtils.java295 String content, PendingIntent pendingIntent, String category, String channelName, in showNotificationHelper() argument
298 null /* positiveAction */, null /* negativeAction */, category, channelName, in showNotificationHelper()
304 Notification.Action negativeAction, String category, String channelName, in showNotificationHelper() argument
312 final NotificationChannel channel = new NotificationChannel(channelName, name, in showNotificationHelper()
314 final Notification.Builder builder = new Notification.Builder(context, channelName) in showNotificationHelper()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationHistoryProtoHelper.java108 String channelName = parser.readString(Notification.CHANNEL_NAME); in readNotification() local
109 notification.setChannelName(channelName); in readNotification()
110 stringPool.add(channelName); in readNotification()
DPreferencesHelper.java422 String channelName = parser.getAttributeValue(null, ATT_NAME); in restoreChannel() local
425 if (!TextUtils.isEmpty(id) && !TextUtils.isEmpty(channelName)) { in restoreChannel()
427 id, channelName, channelImportance); in restoreChannel()
/frameworks/base/core/java/android/app/
DNotificationHistory.java164 public Builder setChannelName(String channelName) { in setChannelName() argument
165 mChannelName = channelName; in setChannelName()