I have a google login button in my activity. I have a google logo in viewStart position on the button. Having it moves the normally centered text off-center.
Button xml:
<Button
android:id="@+id/signInBtn"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_marginStart="26dp"
android:layout_marginEnd="26dp"
android:layout_marginBottom="108dp"
android:background="@drawable/roung_bg"
android:drawableStart="@drawable/ic_google_logo"
android:elevation="@dimen/elevation"
android:text="@string/logIn"
android:textAlignment="center"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
Which i am not satisfied with and want to center the "LOG IN" text in layout. How can i achieve this?
