Untitled

 avatar
unknown
plain_text
2 years ago
529 B
16
Indexable
 


/*en el activity main antes de el text view*/
<androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        tools:ignore="MissingConstraints" />



/*en el main activity dentro del on create depues de las otras 2 sentencias */                 androidx.appcompat.widget.Toolbar toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
Editor is loading...
Leave a Comment