Android Question Implementation Splitter or ComboBox after a button action

Luiz Fernando Orlandini

Active Member
Licensed User
Longtime User
Hi All!

I need some advice.

Which is the best implementation of the below cenario?

A user can submit a reject action in my APP, but I need to capture the reason of this rejection (I have some possible reasons that the user must choose).

Also, the user can opt to close the action cause he give up the action and decide to accept the order.

Thanks.
 

Luiz Fernando Orlandini

Active Member
Licensed User
Longtime User
You can use Spinner to let the user choose an option.

Erel, the implementation with the Spinner its an option. But it's really important something that forces that the users input the reason why he decide the reject the order (it's not an optional data).

Can I have another option?
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
you can use a spinner and an edittext. both have to be filled... spinner.itemindex > -1 and edittext.text <> ""
 
Upvote 0
Top