对于不使用appcompat-v7的活动,Snackbar看起来很像(在应用程序通知中)

时间:2017-01-08 09:10:40

标签: android android-layout android-fragments

我想在应用通知中显示(不是对话框,而是应用通知中的轻量级),
它还应该有类似于环聊的按钮: enter image description here

鉴于我的应用中的活动不使用 appcompat-v7:Snackbar on Android without changing theme,我无法使用小吃吧, 有没有办法实现上述功能没有使用外部库,如TSnackbar等。
片段是个好主意吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

你可以使用吐司。

    Context context = getApplicationContext();
    CharSequence text = "Hello toast!";
    int duration = Toast.LENGTH_SHORT;

    Toast toast = Toast.makeText(context, text, duration);
    toast.show();