当前位置: 编程技术>移动开发
本页文章导读:
▪esayUi 单元格归并 esayUi 单元格合并
if(data.rows.length!=0)
{
var name=data.rows[0].name;
var index=0;
var size=0;
for( i=0;i<data.rows.length;i++)
{
if(name!=data.rows[i].name)
{
$('#easygrid2').datagrid('mergeCells',{
index:index,
field:'name',.........
▪ Activity背景色替透明的2种方法 Activity背景色为透明的2种方法
android设置背景色为透明 方法一: 只要在配置文件内activity属性配置内加上 android:theme="@android:style/Theme.Translucent" 就好了。 这样就调用了android的透明样式! .........
▪ 应用Wubi快速安装Ubuntu 使用Wubi快速安装Ubuntu
1 Wubi 是 Windows based Ubuntu Installer 缩写,是一个专门针对Windows用户的Ubuntu安装工具。 2 下载ubuntu-10.04-desktop-i386.iso,并用虚拟光驱加载。3 开始安装,安装的目标盘符不.........
[1]esayUi 单元格归并
来源: 互联网 发布时间: 2014-02-18
esayUi 单元格合并
if(data.rows.length!=0)
{
var name=data.rows[0].name;
var index=0;
var size=0;
for( i=0;i<data.rows.length;i++)
{
if(name!=data.rows[i].name)
{
$('#easygrid2').datagrid('mergeCells',{
index:index,
field:'name',
rowspan:size,
colspan:1
});
name=data.rows[i].name;
index+=size;
size=0;
}
size++;
}
$('#easygrid2').datagrid('mergeCells',{
index:index,
field:'name',
rowspan:size,
colspan:1
});
}
[2] Activity背景色替透明的2种方法
来源: 互联网 发布时间: 2014-02-18
Activity背景色为透明的2种方法
android设置背景色为透明
方法一:
只要在配置文件内activity属性配置内加上
android:theme="@android:style/Theme.Translucent"
就好了。
这样就调用了android的透明样式!
方法二:
先在res/values下建colors.xml文件,写入:
<?xmlversion="1.0"encoding="UTF-8"?>
<resources>
<colorname="transparent">#9000</color>
</resources>
这个值设定了整个界面的透明度,为了看得见效果,现在设为透明度为56%(9/16)左右。
再在res/values/下建styles.xml,设置程序的风格
<?xmlversion="1.0"encoding="utf-8"?>
<resources>
<stylename="Transparent">
<itemname="android:windowBackground">@color/transparent</item>
<itemname="android:windowIsTranslucent">true</item>
<itemname="android:windowAnimationStyle">@+android:style/Animation.Translucent</item>
</style>
</resources>
最后一步,把这个styles.xml用在相应的Activity上。即在AndroidManifest.xml中的任意<activity>标签中添加
android:theme="@style/transparent"
如果想设置所有的activity都使用这个风格,可以把这句标签语句添加在<application>中。
最后运行程序,哈哈,是不是发现整个界面都被蒙上一层半透明了。最后可以把背景色#9000换成#0000,运行程序后,就全透明了,看得见背景下的所有东西可以却都操作无效。
android设置背景色为透明
方法一:
只要在配置文件内activity属性配置内加上
android:theme="@android:style/Theme.Translucent"
就好了。
这样就调用了android的透明样式!
方法二:
先在res/values下建colors.xml文件,写入:
<?xmlversion="1.0"encoding="UTF-8"?>
<resources>
<colorname="transparent">#9000</color>
</resources>
这个值设定了整个界面的透明度,为了看得见效果,现在设为透明度为56%(9/16)左右。
再在res/values/下建styles.xml,设置程序的风格
<?xmlversion="1.0"encoding="utf-8"?>
<resources>
<stylename="Transparent">
<itemname="android:windowBackground">@color/transparent</item>
<itemname="android:windowIsTranslucent">true</item>
<itemname="android:windowAnimationStyle">@+android:style/Animation.Translucent</item>
</style>
</resources>
最后一步,把这个styles.xml用在相应的Activity上。即在AndroidManifest.xml中的任意<activity>标签中添加
android:theme="@style/transparent"
如果想设置所有的activity都使用这个风格,可以把这句标签语句添加在<application>中。
最后运行程序,哈哈,是不是发现整个界面都被蒙上一层半透明了。最后可以把背景色#9000换成#0000,运行程序后,就全透明了,看得见背景下的所有东西可以却都操作无效。
[3] 应用Wubi快速安装Ubuntu
来源: 互联网 发布时间: 2014-02-18
使用Wubi快速安装Ubuntu
1 Wubi 是 Windows based Ubuntu Installer 缩写,是一个专门针对Windows用户的Ubuntu安装工具。
2 下载ubuntu-10.04-desktop-i386.iso,并用虚拟光驱加载。
3 开始安装,安装的目标盘符不能是中文,否则可能安装出错。
4 安装的时候,最好断掉网络,否则会自动下载一些更新。
5 重启电脑,选择Ubuntu。再进行一些更新和配置。有些步骤也可以跳出。
6 再次重启,安装完成。
1 Wubi 是 Windows based Ubuntu Installer 缩写,是一个专门针对Windows用户的Ubuntu安装工具。
2 下载ubuntu-10.04-desktop-i386.iso,并用虚拟光驱加载。
3 开始安装,安装的目标盘符不能是中文,否则可能安装出错。
4 安装的时候,最好断掉网络,否则会自动下载一些更新。
5 重启电脑,选择Ubuntu。再进行一些更新和配置。有些步骤也可以跳出。
6 再次重启,安装完成。
最新技术文章: