Posts by Ezequiel Messore • 166 points
10 posts
-
0
votes1
answer122
viewsA: <android.support.v7.widget.Toolbar> and does not show the image
@Marcelo CL your question was not very clear. You are trying to make a picture Toolbar ? A good behavior that we always see in apps and use a Toolbar that hides the image. Here is an example of how…
androidanswered Ezequiel Messore 166 -
1
votes0
answers26
viewsQ: Error when clicking the first button of a Dialog
Guys I’m trying to click to confirm my action on an instrumented test, but I’m having a problem that I haven’t found out yet anyone can help me? I’m trying the following: fun…
-
0
votes2
answers83
viewsA: Listview surpassing Toolbar
Artur, always try to work with Coordinatorlayout when you want to use Appbarlayout, I always use it as follows: <?xml version="1.0" encoding="utf-8"?>…
androidanswered Ezequiel Messore 166 -
0
votes1
answer70
viewsA: Screen Size of Smartphones
John, most of the Smart Today has the screen 4.7 up are few below that (do a search in the main Smart sold and compare the screens), I imagine that if you want to reach all will end up having more…
-
2
votes2
answers100
viewsA: Scroolview passing the Toolbar
The right way to use it is to use a Coordinatorlayout instead of a Relativelayout <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"…
-
2
votes1
answer156
viewsA: Fetch an item in the http json Object
All you need to do is fetch the Jsonobject and then fetch the first element as: JSONObject obj = new JSONObject (stringJson); JSONObject status = obj.getJSONObject("status"); JSONObject d3 =…
-
0
votes2
answers154
viewsA: Toolbar stands in front
<android.support.design.widget.CollapsingToolbarLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:fitsSystemWindows="true"…
-
2
votes1
answer130
viewsA: View Interstitial by clicking the Toolbar home button
Henqsan, You should use the id below which is the correct id for the Activity back button. if (id == android.R.id.home){ doSomethink(); } Remembering that if you are using Toolbar has arrow-there.…
androidanswered Ezequiel Messore 166 -
3
votes1
answer65
viewsA: How to send a json of an Activity to a Fragment?
This is the most appropriate way to do it, as your Activity will not need to know the keys that your Fragment needs and you require it to enter the correct parameters. In the case of your Objectjson…
-
1
votes1
answer1470
viewsA: How to customize a Toolbar on android?
I got it so see if it’s what you want. <android.support.design.widget.AppBarLayout android:id="@+id/appbar" android:layout_width="match_parent" android:layout_height="wrap_content"…