我一直在使用AppMsg,這是一個以非侵入方式顯示警報的第三方庫(最初由Cyril Motier設想)。該圖書館正在進行正常的活動,但沒有人知道如何使用圖書館的Fragments
?AppMsg - Crouton庫 - 支持碎片?
https://github.com/johnkil/Android-AppMsg
如可以看到的,需要makeText
活性context
的主要功能。如何將Fragment
傳遞給此方法?
public static AppMsg makeText(Activity context, int resId, Style style)
{
return makeText(context, context.getResources().getText(resId), style);
}
謝謝, Torri。
有任何解決方案? –