Posts by Lucas Pugliese • 48 points
5 posts
-
1
votes1
answer53
viewsA: Insert multiple Markers into Maps
You just defined that markerOptions is an object of the type MarkerOptions, you need to instantiate before doing any operation with the same. Example: if (location != null) { markerOptions = new…
-
0
votes2
answers66
viewsA: Error in list/BD
Oh error is in the incompatibility of you trying to pass the AdapterView.OnItemLongClickListenerto the interface setOnLongClickListener. Since you want to capture the medicine that was clicked, so…
-
1
votes2
answers565
viewsA: Is it possible to call Onclick from Textview a new Activity?
What you need to observe is the following: 1st O findViewById() within Activity is directly linked to its respective layout, in this case: setContentView(R.layout.activity_sd); 2º The error probably…
-
0
votes2
answers228
viewsA: How to show data from a db in 3 tabbed Fragments?
Oh Sectionspagerapter has a Frag1, but at no time do you assign the Bundle to it. You are actually creating a Frag1 new within the Onclick button. Another thing you have to note is the life cycle of…
-
1
votes2
answers46
viewsA: Android - Is it good practice to use the default.xml strings for national applications?
To documentation does not set an ideal language to be default and this is understandable after all it will depend on the design and specifications of the app. With respect to special characters you…
androidanswered Lucas Pugliese 48