Posts by Matheus Menezes • 81 points
3 posts
-
0
votes2
answers366
viewsA: My real ads do not appear in my app, only the test ads
This is common. Admob ads are only actually shown when the application is published in the Play Store. When testing, avoid using registered Ids so you don’t run the risk of having an account…
-
5
votes1
answer81
viewsA: How to use plural with String Resources?
For this specific situation, the android framework provides a feature called "Quantity Strings" (Quantity strings). Create a file inside the directory res/values with any name. Example:…
-
0
votes1
answer54
viewsA: Android Bottomappbar with Framelayout and Coordinatorlayout
The problem is that the AppBarLayout is below the ScrollView (containing the FrameLayout) in the component hierarchy. Create an ID for the AppBarLayout (for example android:id="@+id/appBarLayout")…