Posts by Marcello Galhardo • 101 points
3 posts
-
0
votes3
answers2201
viewsA: How one class can inherit from one interface and another class in Delphi
I’m not sure if I understand your question (and I can’t comment on my reputation), but I will try to answer by my understanding of the initial question. Delphi does not support multiple inheritance,…
-
0
votes2
answers180
viewsA: Application is closed after a while, even with service
As an Android developer, it’s important to keep in mind that you have no control over the lifecycle of an application. At any time your device may run out of resources (run out of memory for…
androidanswered Marcello Galhardo 101 -
0
votes2
answers355
viewsA: Change Status Bar to transparent in a Fragment within an Activity
With Status Bar, you refer to Actionbar/Toolbar? If yes, you can change manually (code) with: ActionBar bar = getActionBar(); bar.setBackgroundDrawable(new…