Posts by Romário Gabaritado • 13 points
2 posts
-
0
votes2
answers397
viewsA: How to enable PDF dowload on webView with Android Studio
Manifest <uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> Try with that stretch wv…
-
1
votes1
answer45
viewsQ: Syntax inside a struct that looks like a function
I was analyzing a code in C++ and came across the following structure: struct ligacao { int v_; int w_; int ComEXp; ligacao(int v, int w, int ComEXp1) : v_(v), w_(w), ComEXp(ComEXp1) {} // Minha…