Skip to content

Padding next button and final button  #295

@nicolasvc

Description

@nicolasvc

5b1b6d9c-8c20-4e2c-a881-9dc8df5c404b
cc7d3ac2-b12e-43ba-b5f6-9a9211d3de55

Hello, I am new to android and the problem I have is that the next button cuts the background as shown in the image and when it is the final button, the icon does not appear and the text moves to the left, being cut and not What part of the implementation am I failing, I upload the implementation of the `get view model (int) code
Thank you very much for reading and help me.

CODE :
public StepViewModel getViewModel(@IntRange(from = 0) int position) {
StepViewModel.Builder builder = new StepViewModel.Builder(context);
switch (position) {
case 0:
builder
.setEndButtonLabel(context.getString(R.string.botonSiguente))
.setBackButtonLabel(context.getString(R.string.botonSalir))
.setNextButtonEndDrawableResId(R.drawable.ic_next)
.setBackButtonStartDrawableResId(StepViewModel.NULL_DRAWABLE);
break;
case 1:
builder
.setEndButtonLabel(context.getString(R.string.botonSiguente))
.setBackButtonLabel(context.getString(R.string.botonAtras))
.setNextButtonEndDrawableResId(R.drawable.ic_next)
.setBackButtonStartDrawableResId(R.drawable.ic_back);
break;
case 2:
builder
.setEndButtonLabel(context.getString(R.string.botonFinalizar))
.setBackButtonLabel(context.getString(R.string.botonAtras))
.setBackButtonStartDrawableResId(R.drawable.ic_back)
.setNextButtonEndDrawableResId(R.drawable.ic_check);
break;

        default:
            throw new IllegalArgumentException("Unsupported position: " + position);
    }
    return builder.create();
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions