Anna ScottPlaying with Toolbar in Android DevelopmentAdded in API Level 21, Toolbar could be thought as a step up from the action bar. Toolbar allows more customization in comparison with…Jul 6, 2023Jul 6, 2023
Anna ScottPlaying MP3 file in Android App (Java)PART 2: Handling Playback as user interacts with the deviceApr 27, 2023Apr 27, 2023
Anna ScottPlaying MP3 file in Android App (Java)PART 1. Using MediaPlayer for playing MP3 file. Requesting Audio Focus. Releasing System resources.Apr 26, 2023Apr 26, 2023
Anna ScottCalling Inherited Members of ClassBeing Object Oriented Programming (OOP) language, new Java classes can build on existing classes via inheritance( inheritance is one of…Apr 12, 2022Apr 12, 2022
Anna ScottNuance with Protected Access Modifier in JavaThere are four access modifiers. Here they are in order from the least restrictive to the most:Mar 14, 2022Mar 14, 2022
Anna ScottCalling Static VariablesStatic variables belong to the class and called by the class name. The following code illustrates how to call static variable:Mar 12, 2022Mar 12, 2022
Anna ScottWorking with Varargs in JavaVarargs in Java stands for variable arguments. Their existance allows the creation of methods that take variable number of arguments. The…Mar 8, 2022Mar 8, 2022
Anna ScottConversion Between Array and ArrayList in JavaArray(fixed length data structure) VS ArrayList(variable length Collection classFeb 27, 2022Feb 27, 2022
Anna ScottJAVA — Pass by ValueJava is a strictly pass by value language. What do we mean when we say that? We are talking about of how we are passing parameters to our…Oct 22, 20215Oct 22, 20215
Anna ScottJava ImportsThere are over 5000 built-in classes in JAVA, and it is hard to say how many classes that were created by developers like you and me…Oct 18, 20211Oct 18, 20211