Boa tarde,
Estou com problemas ao adicionar o icone feito através do drawable no Floating Action. Ao acrescentar o icone da mesmo forma em que foi adicionado na aula, o resultado é diferente e o botão fica pequeno com bordas brancas, não preenchendo completamente o botão.
Imagem
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/activity_lista_alunos_fab_novo_aluno"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_margin="16dp"
android:clickable="true"
android:focusable="true"
android:src="@drawable/ic_action_bottom"
/>
<ListView
android:id="@+id/activity_lista_alunos_listview"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>