当前位置: 编程技术>移动开发
本页文章导读:
▪TableLayout格局中容易混淆的属性 TableLayout布局中容易混淆的属性
TableLayout经常用的属性是:android:collapseColumns:以第0行为序,隐藏指定的列android:shrinkColumns:以第0行为序,自动延伸指定的列填充可用部分当LayoutRow里面的.........
▪ 拖拽Listview 背景替黑色 拖拽Listview 背景为黑色
拖拽 ListView(据说GridView也有)是出现背景为黑色
需要修改
1.listview的xml布局中
cacheColorHint="#00000000"
2. java代码中
lv.setCacheColorHint(0); // 或者 gridview.setCacheColorhint(.........
▪ 系统剔除照片动画 系统删除照片动画
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationTransition:103 forView:self.view cache:YES];
[UIView setAnimationDuration:0.5f];
[UIView setAnimationPosition:CGPointMake(10, 30)]; // .........
[1]TableLayout格局中容易混淆的属性
来源: 互联网 发布时间: 2014-02-18
TableLayout布局中容易混淆的属性
TableLayout经常用的属性是:
android:collapseColumns:以第0行为序,隐藏指定的列
android:shrinkColumns:以第0行为序,自动延伸指定的列填充可用部分
当LayoutRow里面的控件还没有布满布局时,shrinkColumns不起作用
android:stretchColumns:以第0行为序,尽量把指定的列填充空白部分
TableLayout经常用的属性是:
android:collapseColumns:以第0行为序,隐藏指定的列
android:shrinkColumns:以第0行为序,自动延伸指定的列填充可用部分
当LayoutRow里面的控件还没有布满布局时,shrinkColumns不起作用
android:stretchColumns:以第0行为序,尽量把指定的列填充空白部分
[2] 拖拽Listview 背景替黑色
来源: 互联网 发布时间: 2014-02-18
拖拽Listview 背景为黑色
拖拽 ListView(据说GridView也有)是出现背景为黑色
需要修改
1.listview的xml布局中
cacheColorHint="#00000000"
2. java代码中
lv.setCacheColorHint(0); // 或者 gridview.setCacheColorhint(0);
[3] 系统剔除照片动画
来源: 互联网 发布时间: 2014-02-18
系统删除照片动画
http://www.iphonedevwiki.net/index.php?title=UIViewAnimationState
[UIView beginAnimations:nil context:NULL]; [UIView setAnimationTransition:103 forView:self.view cache:YES]; [UIView setAnimationDuration:0.5f]; [UIView setAnimationPosition:CGPointMake(10, 30)]; // 设置结束动画位置 [UIView commitAnimations];
http://www.iphonedevwiki.net/index.php?title=UIViewAnimationState
最新技术文章: