Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

String name add in vertical #55

Open
nishi17 opened this issue Jan 30, 2020 · 5 comments
Open

String name add in vertical #55

nishi17 opened this issue Jan 30, 2020 · 5 comments

Comments

@nishi17
Copy link

nishi17 commented Jan 30, 2020

.steps(new ArrayList() {{
add("Ordered");
add("Packed");
add("Shipped");
add("Delivery");
}})

it show like
O
r
d
e
r
e
d

below circle

AND also
stepView.go(2, true);

selected circle text gone

@Vave-Phi
Copy link

Hi, I also had the same issue with text being added vertically. Any solution for this by now?

@khandelwalp
Copy link

I was facing the same issue. I changed from ConstraintLayout to RelativeLayout and it worked fine.

@Felcks
Copy link

Felcks commented Oct 28, 2020

Same problem here. I am trying some workarounds

@Felcks
Copy link

Felcks commented Oct 28, 2020

@khandelwalp Thanks man. Worked for me too.

<RelativeLayout //Previous was LinearLayout
            android:id="@+id/event_ticket_purchase_step_view_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:paddingStart="@dimen/padding_or_margin_micro"
            android:paddingEnd="@dimen/padding_or_margin_micro"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/toolbar_default">

            <com.shuhart.stepview.StepView
                android:id="@+id/event_ticket_purchase_step_view"

@JefferssonSemin
Copy link

Nice, that solved. Thanks 👍

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants