Posts by robsonp • 455 points
29 posts
-
2
votes2
answers601
viewsA: Posts Firebase in English
The solution was to add in the Action URL lang=pt
-
-1
votes2
answers601
viewsQ: Posts Firebase in English
I made the registration of users by Firebase and after the registration is sent to the email to the user validate access. However, Firebase messages are in English. There is the possibility to stay…
-
0
votes1
answer41
viewsQ: Consume Retrofit json on my real device (smartphone)
I made an apirest with Springboot that works perfectly by the browser at the address. http://localhost:8080/pessoas_escalas I can consume the service locally by the Android Studio emulator, through…
-
0
votes2
answers706
viewsA: Make Floatingactionbutton Overlay Linearlayout
Follow the image of how it looked and the code. I put your 1st Relativelayout inside another Relativelayout <?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.DrawerLayout…
-
0
votes0
answers166
viewsQ: Show first letter textview
I’m taking the Firebase data and putting it into a Reciclerview. And I’m using the Textdrawable library to display the first letter of the text naming in a circle made the gmail app.However I cannot…
-
0
votes1
answer40
viewsA: Seachview search fragment data
I was able to solve leaving Materialsearchbar in actionbar’s xml and put it in the fragment like this. Before materialSearchBar = (MaterialSearchBar) view.findViewById(R.id.searchBar); I switched to…
-
0
votes1
answer40
viewsQ: Seachview search fragment data
In the application has Toolbar and 2 tabs through the Tablayout with 1 fragment in each tab. I want to put the Materialsearchview library to implement the searchview that will be done by searching…
-
0
votes0
answers130
viewsQ: Search Firebase for several fields
I can search the searchview by taking the data from Firebase only by the item nameOrganization as I do to search for any field at the same time. Ex: I can search Sao Paulo, Machines, SENAI, etc and…
-
0
votes1
answer396
viewsQ: Case insensitive search Firebase
I’m using Toolbar’s searhcview for searching recyclerview items the search works, but Firebase’s query differentiates between upper and lower case and sharp words. I wish it was Case insensitive…
-
1
votes1
answer99
viewsA: Firebase charset error
I was importing the data from Sublime to Firebase. I saved the files from Sublime Text and put it in UTF-8. With that the characters worked in Firebase.
-
0
votes3
answers803
viewsA: How to add a Searchview to an Android Fragment?
In Fragment @Override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { inflater.inflate(R.menu.menu_tab1_fixo, menu); final MenuItem item = menu.findItem(R.id.search_fixo); } The…
-
0
votes1
answer99
viewsQ: Firebase charset error
I created the database in Firebase and added some records, but it is giving error in relation to the words with special characters in Recyclerview Android and also in the Firebase site itself. The…
-
0
votes1
answer173
viewsQ: Error reading Firebase data
I try to read the data from firebase and put in the view Recycler, however is giving this error. Error:(77, 73) error: constructor Firebaserecycleradapter in class Firebaserecycleradapter cannot be…
-
1
votes0
answers257
viewsQ: Searchview error layout
Every time I click to search the search pushes tabs down I would like the tabs to stay fixed and the searchview to expand without pushing the tabs. <?xml version="1.0" encoding="utf-8"?>…
-
2
votes1
answer61
viewsQ: Select menu link
I’m using javascript to select the menu to open the page I selected, the menu is already being selected but is not opening the pages. And the click event is working when I click on the menu.…
-
3
votes3
answers3645
views -
0
votes3
answers1290
viewsA: mask jquery currency
Guys I managed to solve my problem, the solution was I put javascript inside the p:dialog <p:dialog widgetVar="edicaoArmaDialog" id="dialog_arma" resizable="false" modal="true"…
-
1
votes3
answers1290
viewsQ: mask jquery currency
In my xhtml I have 2 input value 1 and 2. The first input works perfectly the jquery mask for currency. More in the 2 input that is in a modal the coin mask is not working. coin function function…
-
3
votes1
answer1027
viewsQ: Fill select return ZIP code web service
I am using the example of the site viacep for when the user enters the zip code is filled in the other data of the address, however I would like the state through a select to be filled…
-
1
votes1
answer133
viewsA: Capitalize
I managed to solve it. The selector was as in the code below. $("#frm\\:cliente").keyup(function(){ var start = this.selectionStart, end = this.selectionEnd; $(this).val( $(this).val().toUpperCase()…
-
1
votes1
answer133
viewsQ: Capitalize
I have an input and I would like that when the user type the letters will be uppercase by the effect of javascript. Without the form I can, more when I put the form does not work. ` <ui:define…
-
0
votes0
answers270
viewsQ: Update image after attaching to fileupload
When I insert the image by dialog using the fileupload the graphicImage does not update the image after I click on attach. The photo only appears on graphicImage after I save the form. I wanted the…
-
1
votes1
answer512
viewsQ: How to limit the number of characters in an inputNumber?
I’m using the Primefaces extension to format a input the weight and height of a person and could not. How do I limit the amount of characters typed in input? I tested with maxlength="5" but it…
-
1
votes1
answer266
viewsQ: Update graphicImage after fileupload
I am trying to update the photo form when I send the image through the dialog via fileupload. The photo only appears after I press F5. <h:form id="form"> <h:inputHidden id="idPessoa"…
-
1
votes1
answer427
viewsA: How to remove the back button on android
If you are in the oncreate the code below. getSupportActionBar().setDisplayHomeAsUpEnabled(true); You should also take Parentacivity on androidmanifest.xml. ex: <activity…
-
7
votes2
answers927
viewsQ: Return reading in JSON
I can read the return of json in the format [{"celular":"123456","_id":"1"}] The code that works with the json above is this: public static void MakeJsonArrayReq() { JsonArrayRequest jreq = new…
-
4
votes1
answer264
viewsQ: Doubt onkeyup javascript
When I type in input any word, the typed text goes to uppercase. In Mozilla Firefox and Internet Explorer I can turn back the indicator that keeps blinking to type a letter and I can edit it…
-
1
votes0
answers85
viewsQ: Doubt menu of Primefaces
I changed the color (Hover) when I move the mouse over the menubar item, but the icons are also disappearing, when I move the mouse over the image. How do I make icon not disappear? /* Cor menu */…
-
1
votes0
answers52
viewsQ: Save listview state
I have a ListView I bring data from the database. When I search for search of ActionBar the filtered data appears, then I select an item from ListView to see the data. When I go back to ListView by…