当我显示小吃栏时,文本出现在顶部。我说的是文字,而不是小吃店。下一张图片显示了这种行为:
我正在使用com.rey.material.widget库(https://github.com/rey5137/Material/wiki/SnackBar),这是我正在处理的一段代码:
SnackBar.make(this)
.singleLine(true)
.text("This is a message")
.textColor(getResources().getColor(R.color.white_text_color))
.duration(getResources().getInteger(R.integer.snackbar_dismiss_timer))
.show(this);
我能做些什么?有什么线索吗?提前致谢!