当前位置: 编程技术>移动开发
本页文章导读:
▪荧屏切换的两种方法 屏幕切换的两种方法
在2.0之后有了overridePendingTransition(),其中里面两个参数,一个是前一个activity的退出两一个activity的进入,
@Override
public void onCreate(Bundle savedInstanceState) {
.........
▪ TableLayout将里头button设置为可用 TableLayout将里面button设置为可用
TableLayout tableLayoutInstance;
// 假定是buttonArrayList<View> touchables = tableLayoutInstance.getTouchables(); for(View touchable : touchables){ if( touchable instanceof Button ) .........
▪ 中国移动WAP2.0开发大要 中国移动WAP2.0开发概要
中国移动WAP2.0开发概要
......
[1]荧屏切换的两种方法
来源: 互联网 发布时间: 2014-02-18
屏幕切换的两种方法
在2.0之后有了overridePendingTransition(),其中里面两个参数,一个是前一个activity的退出两一个activity的进入,
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.SplashScreen); new Handler().postDelayed(new Runnable() { @Override public void run() { Intent mainIntent = new Intent(SplashScreen.this, AndroidNews.class); SplashScreen.this.startActivity(mainIntent); SplashScreen.this.finish(); overridePendingTransition(R.anim.mainfadein, R.anim.splashfadeout); } }, 3000); }
上面的代码只是闪屏的一部分
getWindow().setWindowAnimations(int);
这可没有上个好但是也可以
[2] TableLayout将里头button设置为可用
来源: 互联网 发布时间: 2014-02-18
TableLayout将里面button设置为可用
TableLayout tableLayoutInstance;
// 假定是button
ArrayList<View> touchables = tableLayoutInstance.getTouchables();
for(View touchable : touchables){
if( touchable instanceof Button )
((Button)touchable).setEnable(false);
}
[3] 中国移动WAP2.0开发大要
来源: 互联网 发布时间: 2014-02-18
中国移动WAP2.0开发概要
中国移动WAP2.0开发概要
中国移动WAP2.0开发概要
最新技术文章: