Posts by Jackowski • 281 points
6 posts
-
0
votes2
answers972
viewsA: How to start Owl Carousel after 2 seconds?
var $owl = $('.slider).owlCarousel(options); var autoplayDelay = 2000; if (autoplayDelay) { $owl.trigger('stop.owl.autoplay'); setTimeout(function() { …
owl-carouselanswered Jackowski 281 -
7
votes2
answers675
views -
3
votes4
answers16229
viewsA: How to add entries to a dictionary?
You can use something like: entrada1 = input("Por favor insira um numero: ") dicionario[entrada1] = 1
-
1
votes1
answer2075
viewsA: How to call a method another Activity in my Activity?
First of all, I want to (re)remember that an activity has a limited life cycle. When I ask the question, static the methods to share. Then just call the method as follows: activityB.metodoUm.…
-
1
votes1
answer105
viewsA: Error when using activities in a child package
Your Mainactivity class package is wrong. Change the "name" attribute of your Mainactivity class on your Androidmanifest.xml by going as follows: Before: <activity android:name=".MainActivity"…
-
0
votes1
answer125
views