.aidl 文件中的方法是否有“@Deprecated”注解?
Is there "@Deprecated" annotation for methods in .aidl files?
.aidl 文件中的方法是否有相应的“@Deprecated”注解语法?
我想将一种方法标记为已弃用,添加一种新方法并推广使用该方法,同时仍保持向后兼容性。
您可以在下一个 URL 中找到示例:@Deprecated in .aidl
提到的例子 URL:
/** @deprecated use {@link #enqueueNotificationWithTag} instead */
void enqueueNotification(String pkg, int id, in Notification notification, inout int[] idReceived);
/** @deprecated use {@link #cancelNotificationWithTag} instead */
void cancelNotification(String pkg, int id);
.aidl 文件中的方法是否有相应的“@Deprecated”注解语法? 我想将一种方法标记为已弃用,添加一种新方法并推广使用该方法,同时仍保持向后兼容性。
您可以在下一个 URL 中找到示例:@Deprecated in .aidl
提到的例子 URL:
/** @deprecated use {@link #enqueueNotificationWithTag} instead */
void enqueueNotification(String pkg, int id, in Notification notification, inout int[] idReceived);
/** @deprecated use {@link #cancelNotificationWithTag} instead */
void cancelNotification(String pkg, int id);