Posts by Diego Magdaleno • 206 points
3 posts
-
0
votes1
answer49
viewsA: Call conversion from Java to Kotlin
The method getFragmentManager() is deprecated from API level 28. It is recommended to use the method getSupportFragmentManager() in its place, or, using Kotlin’s Property access syntax, you can…
-
8
votes4
answers14813
viewsA: I need to lock Ctrl+v in a text box
Just to add an alternative to the above mentioned options: <input type="text" onpaste="return false" ondrop="return false"/> The attribute onpaste takes the necklace event and the ondrop…
-
1
votes1
answer4138
viewsA: Consume REST service using Spring Framework
It is possible, yes. Take a look at the class Resttemplate spring. Here’s a step-by-step guide to making a GET using this class: https://spring.io/guides/gs/consuming-rest/…