I am making an application, more to learn from mistakes than anything else, and I needed help to achieve this:
From the Main activty , I open activity2 , and from activity2 I open a activity3 , but I do not want the u...
I have the following code in jQuery:
$("#Eng").click(function(evento){
alert ("Entro en cambio idioma.");
//elimino el comportamiento por defecto del enlace
evento.preventDefault();
$.ajax({
type: 'GET',
url: 'FAjax.php',...
How can I limit the height of a Spinner from the layout where I have it?
The problem is that on devices with smaller screens it has too much height , so I need to change it from layout
layout
<Sp...
I have a String that has some text like the following:
"I am a Prayer"
What I want is to be able to add spaces before capital letters so that it looks like this:
"I am A Prayer"
I am using JS to perform an API and as much as I try I can not understand why, when making a POST request to create a user, it tells me that User is not a constructor.
I am "new" in JS and I have in mind the creation of classes / constructors...
I have a TabLayout with 2 tabs , when I press above each tab the selector is shown above the indicated tab, but when I press the physical button on the back the selector remains in the previous tab.
TabLayout mTabLayout = (TabLayo...
The question basically consists of what you see in the title, and I have seen this attribute in many templates and works lately ...
Can someone tell me what it works for? Apart from that, what is the best way to write this meta tag with its a...
My problem is that I want to empty a datatable in a temporary folder of sql, my code already arrives at the moment of executing my stored procedure that executes the insertion of the datatable.
Insertion Code in c #
try
{
co...
Error 1
: This happens to me when I execute my project.
Error:Execution failed for task ':app:processDebugManifest'.
> com.android.manifmerger.ManifestMerger2$MergeFailureException: org.xml.sax.SAXParseException; lineNumber: 1;...
This is my code I want to make a call get of axios by vue and that after having the image that shows it in html
getImage(param) {
axios.get(param)
.then((resp) => {
return this.image = resp.d...