I'm working on a small project for college and I came across this when using a toast:
Ihavenoideawhatmadethetoastlooklikethis.Hasanyoneeverhadasimilarproblem?
Edition:ThisisthecodeI'musingtocreateToast:
Toast.makeText(Singleton.getInstance().getContext(),"Nota criada com sucesso!", Toast.LENGTH_SHORT).show();
I noticed that the error appeared after I installed the SystemBarTint library. Before using it, I had tried to get the same result using only XML files, but I was not satisfied. Could anything in this be influencing? This is my styles.xml
current:
<resources>
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/Notas.ActionBar</item>
<item name="android:actionBarWidgetTheme">@style/Notas.ActionBar.OverflowMenu</item>
<item name="android:fitsSystemWindows">true</item>
<item name="android:clipToPadding">true</item>
<item name="android:windowTranslucentStatus">true</item>
</style>
<style name="Notas.ActionBar" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:background">@color/roxo</item>
<item name="android:titleTextStyle">@style/Notas.ActionBar.TitleTextStyle</item>
</style>
<style name="Notas.ActionBar.TitleTextStyle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">@color/branco</item>
</style>
<style name="Notas.ActionBar.OverflowMenu" parent="android:Theme.Holo.Light">
<item name="android:popupMenuStyle">@android:style/Widget.Holo.Light.PopupMenu</item>
<item name="android:dropDownListViewStyle">
@android:style/Widget.Holo.Light.ListView.DropDown
</item>
</style>
</resources>