Posts by Cicero Alysson • 11 points
6 posts
-
0
votes1
answer109
viewsA: Error while changing screen orientation using Fragments
Apparently the problem is in the Android IDE Studio when renaming the ID of the first Fragment that is in Graph(Area responsible for navigation) is automatically renaming the navgation id itself, so…
-
-1
votes1
answer109
viewsQ: Error while changing screen orientation using Fragments
While turning the screen orientation I get this error: Error android.view.Inflateexception: Binary XML file line #23: Binary XML file line #11: Error inflating class Fragment Question: What could be…
-
0
votes2
answers79
viewsA: Make two updates at once
The problem was solved using transactions ACID database First enable exceptions in PDO instance: $this->pdo = new PDO($this->db_host,$this->usuario,$this->senha,array( PDO::ATTR_ERRMODE…
-
0
votes1
answer46
viewsA: I accidentally modified the Git branch of my project in android studio
I was able to solve the problem, apparently when the versions fade into a history: Glue it to the terminal git reflog then you need to create a new branch and reference what is missing git branch…
-
0
votes1
answer46
viewsQ: I accidentally modified the Git branch of my project in android studio
Guys, I was working on my project when I accidentally clicked on something, and apparently I "lost" the newer versions. I appeared this message on my android console studio: Warning: you are leaving…
-
1
votes2
answers79
viewsQ: Make two updates at once
I have a table with some records, I want to change two rows of this table at the same time I’m currently doing this: include("conexao.php"); $tabela1 = "endereco"; $endereco_id= "75";…