Posts by paulokhouri • 11 points
3 posts
-
1
votes3
answers208
viewsA: Composition: use @class or #import?
In your header file, when you need to refer to a class you use @class, already within your source you will use the class and not only reference it, so you use #import
-
0
votes5
answers1154
viewsA: Map does not load, showing error
You are in trouble when it comes to creating your Intent, because the error you posted is that there is no Activity that is responding for your Intent, this has nothing to do with Maps.
-
0
votes2
answers569
viewsA: Hide and show the header of a listview when scrolled
You create a view that will be your header and gives an addHeaderView: HeaderView header = new HeaderView(getActivity(), json); mListView.addHeaderView(header);…