Android 自定义弹出框实现代码
废话不多说了,直接给大家上关键代码了。
-(void)viewDidLoad
{
[superviewDidLoad];
//Doanyadditionalsetupafterloadingtheview.
[selfshowAlertView:@"11111"];
}
//自定义弹出框
-(void)showAlertView:(NSString*)strTipText
{
UIView*showView=[[UIViewalloc]init];
[showViewsetFrame:CGRectMake(100,100,120,35)];
[showViewsetAlpha:0.0f];
[showViewsetBackgroundColor:[UIColorblackColor]];
[showViewsetClipsToBounds:YES];
[[showViewlayer]setMasksToBounds:YES];
[[showViewlayer]setCornerRadius:5.0f];
UILabel*lblTips=[[UILabelalloc]init];
[lblTipssetFrame:CGRectMake(0,0,120,35)];
[lblTipssetText:strTipText];
[lblTipssetTextAlignment:NSTextAlignmentCenter];
[lblTipssetTextColor:[UIColorwhiteColor]];
[lblTipssetBackgroundColor:[UIColorclearColor]];
[lblTipssetFont:[UIFontboldSystemFontOfSize:16]];
[showViewaddSubview:lblTips];
[self.viewaddSubview:showView];
[UIViewanimateWithDuration:0.5fdelay:0.0foptions:UIViewAnimationOptionCurveLinearanimations:^{
showView.alpha=1.0f;
}completion:^(BOOLfinished){
[UIViewanimateWithDuration:1.0fdelay:1.0foptions:UIViewAnimationOptionCurveLinearanimations:^{
showView.alpha=0.0f;
}completion:^(BOOLfinished){
;
}];
}];
}
以上所述是小编给大家介绍的Android自定义弹出框实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!