`
malong26
  • 浏览: 168701 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

模仿iphone弹出式短信查看

阅读更多
感觉使用抽屉查看短信麻烦,于是自己写了一个模仿iphone查看的短信的小程序,自己用,挺好的。实现原理主要是activity的背景半透明,加上收到短信开启服务和桌面图标开启服务。目前只做了收到1条短信显示,如果是长短信和连续短信的话没有做处理,废话少说,附件是源码和截图。
popSMS.java 闪屏,首次开启应用显示
package com.smsshow;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;

public class popSMS extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
	// TODO Auto-generated method stub
	super.onCreate(savedInstanceState);
	setContentView(R.layout.start_page);
	
	new Handler().postDelayed(new Runnable() {
		public void run() {
			startService(new Intent(popSMS.this, MyService.class));
			popSMS.this.finish();
		}
	}, 2000);
}
}

注:此Receiver无用,但是贴上提醒一下童鞋们
BootBroadcastReceiver.java 本来的想法是开机开启服务,但是某些rom比如htc,lenovo是不公开BOOT_COMPLETED广播的,我们自己的应用接收不到,所以我使用了收到短信开启服务
package com.smsshow;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

public class BootBroadcastReceiver extends BroadcastReceiver {

	@Override
	public void onReceive(Context context, Intent intent) {
		// TODO Auto-generated method stub
		//if(intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)){
			Log.i("tag","get boot completed action");
			Intent serviceIntent = new Intent();
			serviceIntent.setClass(context, MyService.class);
			context.startService(serviceIntent);
		//}
	}

}


MyService.java 接收短信服务
package com.smsshow;

import android.app.Service;
import android.content.BroadcastReceiver;
import android.content.ContentResolver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.database.Cursor;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.IBinder;
import android.telephony.SmsMessage;
import android.util.Log;

public class MyService extends Service {

	BroadcastReceiver mReceiver;

	@Override
	public int onStartCommand(Intent intent, int flags, int startId) {
		// TODO Auto-generated method stub
		mReceiver = new SMSReceive();
		IntentFilter filter = new IntentFilter();
		filter.addAction("android.provider.Telephony.SMS_RECEIVED");
		registerReceiver(mReceiver, filter);

		return super.onStartCommand(intent, flags, startId);
	}

	@Override
	public IBinder onBind(Intent intent) {
		// TODO Auto-generated method stub

		Log.i("tag", "my sms service is on!");

		return null;
	}

	private void showMsg(String title, String message) {
		Intent startIntent = new Intent();
		startIntent.setClass(this, SmsShowActivity.class);
		startIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
		startIntent.putExtra("title", title);
		startIntent.putExtra("message", message);
		startActivity(startIntent);
	}

	class InnerTask extends AsyncTask<String, Object, Object> {

		String contectId;
		String msgNumber;
		String msgBody;

		@Override
		protected Object doInBackground(String... params) {
			// TODO Auto-generated method stub
			msgNumber = params[0];
			msgBody = params[1];
			contectId = getContactIDFromPhoneNum(msgNumber);
			return null;
		}

		@Override
		protected void onPostExecute(Object result) {
			// TODO Auto-generated method stub
			if (contectId == null) {
				showMsg(msgNumber, msgBody);
			} else {
				showMsg(contectId, msgBody);
			}
			super.onPostExecute(result);
		}

		public String getContactIDFromPhoneNum(String phoneNum) {

			String contactName = null;
			ContentResolver resolver = MyService.this.getContentResolver();
			Uri uri = Uri
					.parse("content://com.android.contacts/data/phones/filter/"
							+ phoneNum);
			Cursor c = resolver.query(uri, new String[] { "display_name" },
					null, null, null);
			while (c.moveToNext()) {
				contactName = c.getString(0);
			}
			Log.i("tag", "contactname" + contactName);
			return contactName;

		}
	}

	@Override
	public void onDestroy() {
		// TODO Auto-generated method stub
		unregisterReceiver(mReceiver);
		super.onDestroy();
	}

	class SMSReceive extends BroadcastReceiver {

		static final String TAG = "SMSReceive";
		static final String smsuri = "android.provider.Telephony.SMS_RECEIVED";

		@Override
		public void onReceive(Context arg0, Intent arg1) {
			if (arg1.getAction().equals(smsuri)) {
				Bundle bundle = arg1.getExtras();
				if (null != bundle) {
					Object[] pdus = (Object[]) bundle.get("pdus");
					SmsMessage[] smg = new SmsMessage[pdus.length];
					for (int i = 0; i < pdus.length; i++) {
						smg[i] = SmsMessage.createFromPdu((byte[]) pdus[i]);
						Log.i(TAG + "smg" + i, smg[i].toString());
					}
					for (SmsMessage cursmg : smg) {
						String msgBody = cursmg.getMessageBody();
						String msgNumber = cursmg.getOriginatingAddress();
						new InnerTask().execute(msgNumber, msgBody);
					}
					// abortBroadcast(); //终止此条广播
				}
			}
		}
	}

}


SmsShowActivity.java Activity显示
package com.smsshow;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class SmsShowActivity extends Activity {
	/** Called when the activity is first created. */
	
	String title;
	String message;
	Button btn;
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		init();
	}
	
	private void init(){
		title = getIntent().getStringExtra("title");
		message = getIntent().getStringExtra("message");
		
		bindData();
	}

	private void bindData(){
		TextView tv_title = (TextView)findViewById(R.id.tv_title);
		tv_title.setText("From: " + title);
		TextView tv_message = (TextView)findViewById(R.id.tv_message);
		tv_message.setText(message);
		btn = (Button) findViewById(R.id.btn);
		btn.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
					SmsShowActivity.this.finish();
			}
		});
	}
	

	
	
}


Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest
	xmlns:android="http://schemas.android.com/apk/res/android"
	package="com.smsshow"
	android:versionCode="1"
	android:versionName="1.0">
	<uses-sdk android:minSdkVersion="8" />
	<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
	<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>

	<application
		android:icon="@drawable/icon"
		android:label="@string/app_name">

		<activity
			android:name=".popSMS"
			android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
			android:screenOrientation="portrait">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
		</activity>
		<receiver android:name="com.smsshow.BootBroadcastReceiver">
			<intent-filter android:priority="1000">
				<action android:name="android.provider.Telephony.SMS_RECEIVED" />
			</intent-filter>
		</receiver>
		<activity
			android:name=".SmsShowActivity"
			android:theme="@android:style/Theme.Translucent.NoTitleBar"
			android:screenOrientation="portrait" />
		<service android:name=".MyService" />
	</application>
</manifest>
  • 大小: 35.8 KB
分享到:
评论

相关推荐

    iphone 弹出层

    iPhone上的弹出层设计遵循苹果的Human Interface Guidelines(HIG),以提供一致且易用的用户体验。以下是一些关于iPhone弹出层的知识点: 1. **UIAlertController**:在iOS 8及以后的版本中,苹果引入了...

    创建弹出式菜单

    在计算机软件开发中,弹出式菜单是一种常见的交互设计元素,它允许用户通过单击或右键点击某个项目来访问更多的操作选项。这种菜单通常在主界面之外出现,且只在用户触发时显示,因此得名“弹出式”或“下拉式”菜单...

    iPhone 短信编辑器

    可以修改iPhone 上的短信,如果你觉得别人发给你的短信不爽的,可以用这个工具来修改。还可以添加短信到手机上。功能非常强大,所以大家不要用来干坏事。后果自负。 最重要的是手机不需要越狱。

    IPHONE短信导出工具1.1.1

    《IPHONE短信导出工具1.1.1:掌握iPhone短信备份与恢复的关键技术》 在数字时代,手机中的信息变得越来越重要,尤其是短信,它可能包含着重要的联络信息、交易记录或者珍贵的记忆。对于iOS用户来说,如何安全有效地...

    iPhone弹出popover

    然而,"iPhone弹出popover"的描述表明我们将探讨如何在iPhone设备上实现类似的功能,因为默认情况下,Popover是不支持在iPhone上显示的。 Popover在iPad上通常用于大屏幕设备,它可以像一个小型窗口一样悬浮于其他...

    IPHONE短信铃音

    在iOS平台上,为iPhone设置个性化的短信铃声是许多用户喜欢自定义的一种方式,特别是对于开发者来说,了解如何创建和应用这些铃声是一项基础技能。本文将深入探讨与"IPHONE短信铃音"相关的知识点,包括iOS的声音格式...

    模仿iphone的js

    在JavaScript的世界里,模仿...以上就是使用JavaScript模仿iPhone界面的关键知识点,实际开发中还需要根据具体需求进行扩展和定制。通过这个项目,开发者不仅可以提升前端技能,也能更好地理解和复现iOS的设计原则。

    Delphi模仿iPhone

    【标题】"Delphi模仿iPhone"揭示了一个独特的编程实践,其中使用了Delphi这一强大的对象 Pascal 编程环境来创建一个界面设计,旨在模仿苹果iPhone的用户界面风格。这一实践展示了Delphi的强大灵活性,以及其在跨平台...

    仿iphone手机弹出框

    在Android开发中,为了提供与iOS相似的用户体验,开发者有时会需要实现仿iPhone样式的弹出框。这个项目,名为"IphoneDialog",显然是一个专为Android设计的库或者组件,用于创建模仿iPhone风格对话框的UI元素。下面...

    WP7仿iphone气泡式短信界面 v0.1源码

    这种界面设计通常用于短信应用中,模仿了iOS系统中对话气泡的显示方式,使得用户在WP7设备上也能体验到类似iPhone的交互效果。以下是基于这个项目的一些关键知识点和相关技术的详细解释: 1. **Windows Phone 7 (WP...

    ios-模仿QQ弹出视图.zip

    在iOS开发中,模仿QQ的弹出视图是一种常见的需求,尤其在设计用户交互界面时。这个"ios-模仿QQ弹出视图.zip"资源提供了一个解决方案,它可以帮助开发者实现类似QQ应用中的加号菜单弹出功能。下面将详细介绍这个项目...

    仿iphone气泡短信 DEMO

    在这个项目中,开发者不仅定制了ListView的每个单元格(即ListView项),还特别设计了气泡形状,以模仿iPhone短信应用中的气泡样式,包括不同颜色和方向的气泡,以区分发送者和接收者的文字。 【标签】中的"iphone...

    模仿Iphone时间滚轮

    【标题】:“模仿Iphone时间滚轮” 在iOS设备上,苹果公司设计了一种独特的时间选择方式,即“时间滚轮”。这种用户界面元素在众多iPhone应用中常见,尤其是在设置闹钟、计时器或者日历事件时。时间滚轮以其直观的...

    Android仿iphone-气泡短信-DEMO.zip

    "Android仿iphone-气泡短信-DEMO.zip" 这个标题表明这是一个针对Android平台的开发项目,其目标是模仿iPhone的气泡短信效果。气泡短信是iOS系统中一种常见的对话界面设计,以气泡的形式展示聊天内容,使用户在视觉上...

    Android 仿iphone 气泡短信 DEMO.zip

    【标题】"Android 仿iphone 气泡短信 DEMO.zip" 是一个针对Android平台的开发项目,旨在实现类似iPhone的气泡式短信界面。在iOS系统中,短信应用的对话气泡设计极具特色,其视觉效果和用户体验广受好评。这个DEMO是...

    一个模仿iphone平面的特效

    本项目“一个模仿iPhone平面的特效”正是这样一种尝试,旨在复制iPhoneX的界面应用开启动画和关闭动画,为网页添加真实感和科技感。这个特效适用于那些希望在网页上呈现iOS设备操作体验的开发者或设计师。 首先,...

    模仿Iphone网络加载进度条 demo

    在Android开发中,为了提供与iOS设备相似的用户体验,开发者有时会选择模仿iPhone的特定界面元素,如网络加载进度条。本项目"模仿Iphone网络加载进度条 demo"提供了一个实现这一功能的源码示例。这个demo可以帮助...

    模仿iPhone手机界面动画导航菜单iPhone-demo

    标题中的“模仿iPhone手机界面动画导航菜单iPhone-demo”是一个项目名称,显然,这个项目的目标是创建一个模拟真实iPhone设备上导航菜单的用户界面,并且带有动态动画效果。在iOS系统中,导航菜单通常是应用程序中...

    一款模仿Iphone界面的源码forwinmobile(c#)

    标题中的“一款模仿Iphone界面的源码forwinmobile(c#)”指的是一个使用C#编程语言开发的源代码项目,目标是为Windows Mobile设备创建一个与iPhone用户界面相似的体验。这个项目可能包括了各种UI元素和交互设计,以...

Global site tag (gtag.js) - Google Analytics