Android 自定义d出框实现代码

Android 自定义d出框实现代码,第1张

概述废话不多说了,直接给大家上关键代码了。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.

废话不多说了,直接给大家上关键代码了。

- (voID)vIEwDIDLoad{[super vIEwDIDLoad];// Do any additional setup after loading the vIEw.[self showAlertVIEw:@"11111"];}//自定义d出框-(voID)showAlertVIEw:(Nsstring *)strTipText{UIVIEw *showVIEw=[[UIVIEw alloc]init];[showVIEw setFrame:CGRectMake(100,100,120,35)];[showVIEw setAlpha:0.0f];[showVIEw setBackgroundcolor:[UIcolor blackcolor]];[showVIEw setClipsToBounds:YES];[[showVIEw layer]setMasksToBounds:YES];[[showVIEw layer]setCornerRadius:5.0f];UILabel *lblTips=[[UILabel alloc]init];[lblTips setFrame:CGRectMake(0,35)];[lblTips setText:strTipText];[lblTips setTextAlignment:NSTextAlignmentCenter];[lblTips setTextcolor:[UIcolor whitecolor]];[lblTips setBackgroundcolor:[UIcolor clearcolor]];[lblTips setFont:[UIFont boldSystemFontOfSize:16]];[showVIEw addSubvIEw:lblTips];[self.vIEw addSubvIEw:showVIEw];[UIVIEw animateWithDuration:0.5f delay:0.0f options:UIVIEwAnimationoptionCurvelinear animations:^{showVIEw.Alpha=1.0f;}completion:^(BOol finished){[UIVIEw animateWithDuration:1.0f delay:1.0f options:UIVIEwAnimationoptionCurvelinear animations:^{showVIEw.Alpha=0.0f;}completion:^(BOol finished){;}];}];}

以上所述是小编给大家介绍的AndroID 自定义d出框实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!

总结

以上是内存溢出为你收集整理的Android 自定义d出框实现代码全部内容,希望文章能够帮你解决Android 自定义d出框实现代码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1148592.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存