Interface RateMyAppButton

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method and Description
      int getId()
      Deprecated. 
      Gets the id that the button view will be associated with when it is created.
      java.lang.String getLabel()
      Deprecated. 
      Gets the text label that will be applied to the button
      View.OnClickListener getOnClickListener()
      Deprecated. 
      Gets the click listener that will be called when the button is tapped.
      int getStyleAttributeId()
      Deprecated. 
      Gets the attribute id that refers to the style to use.
      boolean shouldDismissDialog()
      Deprecated. 
      Gets whether or not this button should dismiss the dialog after it has been clicked.
    • Method Detail

      • getLabel

        java.lang.String getLabel()
        Deprecated. 
        Gets the text label that will be applied to the button
        Returns:
        The string to be applied to the RateMyAppButton
      • getStyleAttributeId

        int getStyleAttributeId()
        Deprecated. 
        Gets the attribute id that refers to the style to use. This should be defined in your styles.xml file as an attr element
        Returns:
        the style attribute id
      • getOnClickListener

        View.OnClickListener getOnClickListener()
        Deprecated. 
        Gets the click listener that will be called when the button is tapped.
        Returns:
        the android.view.View.OnClickListener that will be invoked for this button
      • getId

        int getId()
        Deprecated. 
        Gets the id that the button view will be associated with when it is created.
        Returns:
        the id of the button
      • shouldDismissDialog

        boolean shouldDismissDialog()
        Deprecated. 
        Gets whether or not this button should dismiss the dialog after it has been clicked.

        Normally this will be false. The only reason to set this to true would be if you were manually adding a new dialog to be shown

        Returns:
        true if the parent dialog should be dismissed after the button is actioned, false otherwise.