표출하는방법은 여러가지 방법이 있지만 저는 
	액티비티를 투명으로 줘서  띄우는 방식을 써는데..
	onmessage에서
	Intent i = new Intent(context, Alert.class);
	Bundle b = new Bundle();
	b.putString("text", message);
	b.putString("pushtype", pushtype);
	i.putExtras(b);
	i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
	context.startActivity(i);
	 
	액티비티 투명효과 스타일 적용하시면 됩니다.
	<item name="android:windowIsTranslucent">true</item>
	 
	alert액티비티에서 원하는 결과를 보여주면되겠죠?