Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DChannelEditorListView.kt130 appControlRow.channelName.text = context.resources
142 lateinit var channelName: TextView
147 channelName = requireViewById(R.id.app_name)
157 private lateinit var channelName: TextView
177 channelName = requireViewById(R.id.channel_name)
207 channelName.text = nc.name ?: ""
H A DNotificationInfo.java394 final TextView channelName = findViewById(R.id.channel_name);
396 channelName.setVisibility(View.GONE);
398 channelName.setText(mSingleNotificationChannel.getName());
H A DNotificationConversationInfo.java313 final TextView channelName = findViewById(R.id.parent_channel_name); in bindConversationDetails() local
314 channelName.setText(mNotificationChannel.getName()); in bindConversationDetails()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
H A DBiometricNotificationUtils.java170 String channelName, String notificationTag, int visibility) { in showNotificationHelper() argument
173 final NotificationChannel channel = new NotificationChannel(channelName, name, in showNotificationHelper()
175 final Notification notification = new Notification.Builder(context, channelName) in showNotificationHelper()
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationHistoryProtoHelper.java108 String channelName = parser.readString(Notification.CHANNEL_NAME); in readNotification() local
109 notification.setChannelName(channelName); in readNotification()
110 stringPool.add(channelName); in readNotification()
H A DPreferencesHelper.java397 String channelName = parser.getAttributeValue(null, ATT_NAME); in restoreChannel() local
400 if (!TextUtils.isEmpty(id) && !TextUtils.isEmpty(channelName)) { in restoreChannel()
402 id, channelName, channelImportance); in restoreChannel()
/aosp14/frameworks/base/core/java/android/app/
H A DNotificationHistory.java164 public Builder setChannelName(String channelName) { in setChannelName() argument
165 mChannelName = channelName; in setChannelName()