I would like to position the Exit button at the end of my layout. I'm using LinearLayout. Any tips on how to position?
This is the Linear Layout code:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.meuprojeto.perfilloginsenha.PerfilActivity">
This is the button code:
<Button
android:id="@+id/btnLogOut"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:text="SAIR"
android:textColor="@color/branco"
android:textSize="20dp"
android:textStyle="bold" />