我已经看到在我的手机和其他手机中的短信被显示为popup
类型的东西。I know how to show the sms from inbox in the form of ListView
.I搜索了很多次,但是没有办法在android.Can中显示短信类似PopUp
的东西。有人在这方面能帮我吗?提前谢谢。
。
发布于 2012-10-21 10:54:58
下面的链接可以帮助你在弹出窗口中显示短信
http://mobile.dzone.com/articles/android-custom-sms-popup-part
发布于 2012-10-21 06:45:58
一般来说,您需要做的是:
公共类YourReceiver扩展了BroadcastReceiver { @Override public void onReceive(Context context,Intent intent) {
Intent startServiceIntent =新的Intent(context,YourService.class);context.startService(startServiceIntent);}}
打开一个对话框
https://stackoverflow.com/questions/12995527
复制相似问题