每次我们锁键盘的时候,都看到如下页面:
看多了就产生审美疲劳, 手机是追求个性化的消费品,想到就是替换她,再找一个。
如何替换呢?Android 提供如下函数:
KeyguardManager mKeyguardManager = (KeyguardManager)getSystemService(Context.KEYGUARD_SERVICE);
KeyguardLock mKeyguardLock = mKeyguardManager.newKeyguardLock("");
mKeyguardLock.disableKeyguard();
拿到键盘守护锁,屏蔽她既可。接下来就是在合适的时机替代她, 这个合适的时机就是接收Intent.ACTION_SCREEN_OFF.
IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
registerReceiver(mReceiver, filter);
这里有点奇怪的是,如果通过android.manifest 配置receiver的话,就得不到Action_screen_off 事件,我现在还纳闷了……
最后就是再找一个她(个性化屏保)了, 我目前在模仿Hero屏保,所以就以她来说了。
首先用一个服务启动一个Activity.
如下:
Intent it = new Intent();
it.setClass(this, ScreenShow.class);
it.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(it);
还要设置该Activity为单态,并且为透明, 属性如下:
android:launchMode="singleTask" android:theme="@style/Theme.nd_Dialog" 其中透明Activity的Style设置为
<style name="Theme.nd_Dialog" parent="android:style/Theme.Translucent">
<item name="android:windowNoTitle">true</item>
</style>
我们体验过Hero屏保界面,就会发现,屏保的移动与手势的用力大小相关。用力重的时候,屏保界面自动往下滑。
VelocityTracker mVelocityTracker;
if (mVelocityTracker == null) {
mVelocityTracker = VelocityTracker.obtain();
}
mVelocityTracker.addMovement(event);
mVelocityTracker.computeCurrentVelocity(1000);
float yVel = mVelocityTracker.getYVelocity();
其中屏保自动往下滑的动作不是用Animation来做的,而是通过Handler, 隔一段时间发送一个消息达到动画的效果:
mHandler.sendMessageAtTime(mHandler.obtainMessage(MSG_ANIMATE),
mCurAnimationTime);
比起Animation, 通过Handle可以达到自如地控制动画.
最后,讲讲屏保内容用到Receiver,
// 时间Receiver
intentFilter.addAction(Intent.ACTION_TIME_CHANGED);
intentFilter.addAction(Intent.ACTION_TIME_TICK);
intentFilter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
// 配置变化, 关闭系统,
intentFilter.addAction(Intent.ACTION_CONFIGURATION_CHANGED);
intentFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
//网络名称Receiver(比如中国移动等) intentFilter.addAction(Telephony.Intents.SPN_STRINGS_UPDATED_ACTION);
// 电量改变Receiver
intentFilter.addAction(Intent.ACTION_BATTERY_CHANGED);
// Sim状态Receiver intentFilter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED;
哈…… 慕然回首,那人却在灯火阑珊处……
转自http://marshal.easymorse.com/archives/2577
无论是在android下还是通过浏览器,访问google地图是相同的参数。具体参数含义可以参见:
http://mapki.com/wiki/Google_Map_Parameters
q,查询语句,我使用的是经纬度坐标;
dirflg,路线类型,比如r表示乘车(公交),t表示避开收费站,h避开高速公路,w步行,什么都不选则是驾车(不避开收费站和高速公路);
t,地图类型,m地图,k卫星,h地图和卫星混合,p地形
和方向相关的:saddr … 从哪里开始,终点在哪里。
dirflg默认情况,驾车,无限制:
iOS技术群:176078249
UINavigationBar自定义导航栏背景和按钮,完美支持横屏竖屏旋转,视图控制器可以分别使用自己的导航栏
此方法可以通过Apple审核,导航上的按钮背景需要做,否则看起来不那么和之又谐
//CustomNavigationBar.h @interface UINavigationBar (UINavigationBarCategory) UIImageView *backgroundView; - (void)setBackgroundImage:(UIImage*)image; - (void)insertSubview:(UIView *)view atIndex:(NSInteger)index; @end //CustomNavigationBar.m @implementation UINavigationBar (UINavigationBarCategory) -(void)setBackgroundImage:(UIImage*)image { if(image == nil) { [backgroundView removeFromSuperview]; } else { backgroundView = [[UIImageView alloc] initWithImage:image]; backgroundView.tag = 1; backgroundView.frame = CGRectMake(0.f, 0.f, self.frame.size.width, self.frame.size.height); backgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; [self addSubview:backgroundView]; [self sendSubviewToBack:backgroundView]; [backgroundView release]; } } //for other views - (void)insertSubview:(UIView *)view atIndex:(NSInteger)index { [super insertSubview:view atIndex:index]; [self sendSubviewToBack:backgroundView]; } @end //YourViewController.m - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"navigation_bar_bg.png"]]; }