Android 登录界面与首页的设计

全屏效果

//取消标题,取消状态栏
this.requestWindowFeature(Window.FEATURE_NO_TITLE);    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
View Code

渐入效果

ImageView img =(ImageView)this.findViewById(R.id.img_logo);
AlphaAnimation animation= new AlphaAnimation(0.0f, 1.0f);
animation.setDuration(3000);
img.setAnimation(animation);
//设置animation.setAnimationListener( new AnimationListener()...
View Code

 

posted @ 2016-11-14 16:09  miao_a_miao  阅读(637)  评论(0编辑  收藏  举报