Home > Blockchain >  I have problem with the button posicion on android studio
I have problem with the button posicion on android studio

Time:10-17

I make a app on android studio, my problem is the posicion on the button. In the layout the posicion is the correct, but in the simulator the button is in the left corner. Example

Design

Simulator

my code

    <androidx.appcompat.widget.AppCompatButton
    android:id="@ id/btn1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#F10000"
    android:onClick="onClick"
    android:text="INICIO"
    android:textColor="#000000"
    tools:layout_editor_absoluteX="161dp"
    tools:layout_editor_absoluteY="622dp />

i need some help :( thank u

CodePudding user response:

the tools keyword in your Button is just to show in layout and nothing more, for define the position of the button you should rely on your button parent,for example if its LinearLayout you can change the position of button by giving it android:layout_gravity

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@ id/parent">


    <androidx.appcompat.widget.AppCompatButton
        android:id="@ id/btn1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#F10000"
        android:onClick="onClick"
        android:text="INICIO"
        android:textColor="#000000"
        android:layout_gravity="center"
        />

</LinearLayout>
  • Related