Questions tagged [android-annotations]

AndroidAnnotations is a compile time framework that helps writing simple and clean Android code that is easy to maintain.

AndroidAnnotations is a compile time framework that helps writing simple and clean Android code.

  • This tag should contain questions related to the AndroidAnnotations framework
  • This tag should not contain general java annotation related questions, or annotation processing questions
  • This tag should not contain questions related to the Android Support Annotations library

Please start by reading the wiki and the mailing list

496 questions
-4
votes
3 answers

What this 'at'/'@' symbol means in Kotlin?

What do these annotations mean in this Kotlin code in android? @SuppressLint("SimpleDateFormat") fun convertLongToDateString(systemTime: Long): String { return SimpleDateFormat("EEEE MMM-dd-yyyy' Time: 'HH:mm") …
1 2 3
33
34