Posts by Francis Nascimento • 117 points
9 posts
-
0
votes1
answer109
viewsQ: How do I maintain and display Countdown when leaving the app?
I’m building an app to run tasks every hour, and I want to show countdown. But when I exit the app, when I return, the countdown restarts. I need that when I return to the app, the countdown is…
-
0
votes2
answers154
viewsQ: How to turn a system out to string?
I want to display a message on the device screen. The message is in System.out.println("Mensagem "); how do I turn into a string and print on screen using a textView?…
-
1
votes1
answer1241
viewsQ: How to create a transparent or colorless css background?
What is the code in css to make the background transparent, or colorless? I’m creating a Native ad on Admob and I need the background to be transparent.
-
1
votes1
answer1241
viewsA: How to create a transparent or colorless css background?
I was able to create the transparency I needed, I used the code below in CSS : body { background-color:rgba(144, 203, 44, 0.4); } leaving the alpha with a smaller number it would rectify the…
-
1
votes2
answers1327
viewsA: Skip a line in the textView
You use n for the number of lines you want to skip, like, if you want to skip a line: n, two lines: n, three lines: n n and so on ! as for Bold: I use in textstyle: Bold EX.: <TextView…
androidanswered Francis Nascimento 117 -
4
votes1
answer330
viewsQ: How to receive external data via XML
I am creating an android app and I need it to receive and show on the screen information of the tide board of the site below: http://servicos.cptec.inpe.br/XML…
-
0
votes1
answer124
viewsA: adMob interstitial delay
Try to do it that way : @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); interstitialAd = new InterstitialAd(Main.this);…
-
1
votes2
answers1472
viewsQ: How to destroy my Activity?
I need to destroy my Mainactivity when I exit the app. How can I do this?
-
3
votes2
answers282
viewsQ: Like timing an Interstitial ad?
How to Time an Interstitial Ad? Example:. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); interstitialAd = new InterstitialAd(Main.this);…