Posts by Matheus Piscioneri • 154 points
5 posts
-
4
votes3
answers3160
viewsA: Remove arrow from "select"
See Working: select { -webkit-appearance: none; -moz-appearance: none; text-indent: 1px; text-overflow: ''; } <select class="backcolorselect" id="st" name=""> <option…
-
4
votes2
answers2043
viewsA: How do I implement ?Sign in with google' in my android app?
Agnaldo, the Androidhive post helped me a lot in implementing Google login +! http://www.androidhive.info/2014/02/android-login-with-google-plus-account-1/…
-
1
votes2
answers276
viewsA: Input image
To add an image in the left corner of edittext, you can add the property android:drawableLeft in your XML. Example: <EditText android:id="@+id/editSenha" android:layout_width="fill_parent"…
androidanswered Matheus Piscioneri 154 -
0
votes1
answer83
viewsQ: Syntax Highlighting no textview Android
Do you know any library or method to display source code (Syntax Highlighting) in textview? I need to do this for hundreds of codes (average of about 400), just for reading. Something similar to the…
-
3
votes3
answers5690
viewsQ: Catch latitude Android - Location == null
I’m having trouble getting latitude and longitude on Android. Using this function, always the "Location" returns "null". public void onCreate() { LocationManager locationManager = (LocationManager)…