Android 登录界面与首页的设计

知识的领域是无限的,我们的学习也是无限期的。这篇文章主要讲述Android 登录界面与首页的设计相关的知识,希望能为你提供帮助。
全屏效果

Android 登录界面与首页的设计

文章图片
Android 登录界面与首页的设计

文章图片
//取消标题,取消状态栏 this.requestWindowFeature(Window.FEATURE_NO_TITLE); this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

View Code渐入效果
Android 登录界面与首页的设计

文章图片
Android 登录界面与首页的设计

文章图片
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【Android 登录界面与首页的设计】 

    推荐阅读