Posts by ehjota • 33 points
5 posts
-
0
votes1
answer280
viewsQ: jQuery with Blur effect does not work
I have a jQuery script to apply Blur effect on a div while the page undergoes a scroll. jQuery: $(document).scroll(function(){ var pixs = $(document).scrollTop() pixs = pixs / 10;…
-
2
votes0
answers59
viewsQ: Show notifications on any screen
I have an app and want to make it show a pop-up style notification, like Whatsapp and/or iOS reminders, but with a custom layout. I’ve searched and so far nothing, anyone has any idea how to do?…
-
0
votes1
answer17
viewsQ: Object appears at start (press) the Onlongclicklistener event and disappears at end (drop)
I’m thinking of a way to make a view with the attribute visibility: gone be visible when you click long click on the screen and disappear as soon as you drop, similar to and done with Instagram.…
-
1
votes1
answer55
viewsA: Can the user change colors of the already compiled application?
I found an easy way. I created a res/values/attrs.xml file: <?xml version="1.0" encoding="utf-8"?> <resources> <attr name="drawable_color" format="reference" /> <attr…
-
0
votes1
answer55
viewsQ: Can the user change colors of the already compiled application?
I’m thinking about creating an app where the user can change their Layout colors as they wish with predefined colors, but I can’t think of a way to do that, if that’s possible. Someone has something…