[feature] custom button title support

This commit is contained in:
d-kunin 2013-09-10 13:19:44 +03:00
parent 9f9b14bb97
commit 2c2d693b1f
2 changed files with 14 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,25 @@ public class MwmRequest
private double mZoomLevel = 1;
private boolean mReturnOnBalloonClick;
private boolean mPickPoint = false;
private String mCustomButtonName = "";
// **
public MwmRequest setCustomButtonName(String buttonName)
{
if (buttonName != null)
mCustomButtonName = buttonName;
else
mCustomButtonName = "";
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 +94,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);