stephentuso/welcome-android

Change action button

marva2013 opened this issue · 2 comments

How to change action of button done and exit ? thanks

What do want to change the actions to? Directly changing the actions isn't currently supported by the library, but it is possible if you really want to.

Depending on what you want to do maybe the BUTTON_BAR bottom layout could work, that supports implementing the click action yourself.

Or, take a look at results, that might be what you're looking for.

To directly change the actions, you could override onCreate in your WelcomeActivity subclass, and the use findViewById to access the buttons and change their OnClickListener. By default they both call completeWelcomeScreen(). Note that this could possibly break in any future update.

Thanks :)