Merge pull request #7 from dkunin-me/custom-button-name

Custom button name
This commit is contained in:
Viktor Govako 2013-09-10 06:52:35 -07:00
commit cd80356929
2 changed files with 11 additions and 1 deletions

View file

@ -35,6 +35,7 @@ public class Const
public static final String EXTRA_CALLER_PENDING_INTENT = AUTHORITY + ".pending_intent";
public static final String EXTRA_RETURN_ON_BALLOON_CLICK = AUTHORITY + ".return_on_balloon_click";
public static final String EXTRA_PICK_POINT = AUTHORITY + ".pick_point";
public static final String EXTRA_CUSTOM_BUTTON_NAME = AUTHORITY + ".custom_button_name";
/* Response extras */

View file

@ -22,15 +22,22 @@ public class MwmRequest
private double mZoomLevel = 1;
private boolean mReturnOnBalloonClick;
private boolean mPickPoint = false;
private String mCustomButtonName = "";
// **
public MwmRequest setCustomButtonName(String buttonName)
{
mCustomButtonName = buttonName != null ? buttonName : "";
return this;
}
public MwmRequest setTitle(String title)
{
mTitle = title;
return this;
}
MwmRequest setPickPointMode(boolean pickPoint)
public MwmRequest setPickPointMode(boolean pickPoint)
{
mPickPoint = pickPoint;
return this;
@ -84,6 +91,8 @@ public class MwmRequest
mwmIntent.putExtra(Const.EXTRA_RETURN_ON_BALLOON_CLICK, mReturnOnBalloonClick);
// pick point
mwmIntent.putExtra(Const.EXTRA_PICK_POINT, mPickPoint);
// custom button name
mwmIntent.putExtra(Const.EXTRA_CUSTOM_BUTTON_NAME, mCustomButtonName);
final boolean hasIntent = mPendingIntent != null;
mwmIntent.putExtra(Const.EXTRA_HAS_PENDING_INTENT, hasIntent);