Posts by Gabriel Muniz • 73 points
8 posts
-
0
votes2
answers54
viewsA: Implement a Layout in Android Studio
From what I understand you are looking for a recyclerview Expandable, this component works well for such: https://github.com/thoughtbot/expandable-recycler-view…
-
0
votes1
answer79
viewsA: Toast setGravity() method does not work in Level 30 API
Often this change is indicating that it’s nice to exchange Toast for snackbar, like: val snackbar = Snackbar.make(layout, message, duration) val snackbarLayout: View = snackbar.view val lp =…
-
-1
votes2
answers56
viewsA: Data Binding Formatted Strings Losing Format
Another possibility is you use a spannable, such as: val span = SpannableString(this) span.setSpan(StyleSpan(Typeface.BOLD), startBold, endBold, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) return span…
-
0
votes1
answer20
viewsA: Android/Kotlin - Select Current Fragment
You can use the getFragment method to catch the Fragment by means of a key in the Bundle, follows: supportFragmentManager.getFragment()
-
0
votes0
answers133
viewsQ: Extremely slow app build
Hi, I’m having a serious problem with the time of Gradle Build an app. I did a lot of research, changed Gradle settings, disabled crashlytics, activated daemon, build cache, offline work and…
-
-1
votes1
answer172
viewsQ: Android Studio Doesn’t Recognize Gradle Libraries
I took a project that has several external dependencies, like facebook lib, even some of the android support itself. The design compiles normally and runs perfectly on the device. The problem is…
-
2
votes1
answer269
viewsQ: Accessing Wifi settings from android (IPV4)
I’m accessing the Wifi settings of Android, and is charging as if I’m searching for a standard IP IPV6. I wonder if there is any Wificonfiguration property to set to IPV4
-
5
votes1
answer1396
viewsQ: Enable CORS via Javascript (Phonegap)
I’m creating a Phonegap application that consumes a Web API (Web Service), and I need to access an external domain. Searching through the web I found that CORS should be enabled via Javascript to be…