今天我在使用Menifest.xml让程序隐藏标题栏是一直出错.主要内容是: You need to use a theme.AppCompat theme(descendant) with this activity. 一直百思不得其解,后询问以大神之后最终得到了解决的方法,就是在style.xml中使用的style中增加一下item: <item name="android:windowNoTitle">true</item> 就能够解决这个问题了. 大神的…
Latex Error cannot determine the size of graphic 报错的解决的方法 插入jpg文件老是会报错... 追究了半天,原来是编译的命令又问题,不应该使用 latex ./hello.tex 而应该使用 pdflatex ./hello.tex 以下是我用的測试代码.当中包括了中文字体的測试. \documentclass{article} \usepackage{CJKutf8} \usepackage{graphicx} \begin{document…
原文网址:http://blog.csdn.net/appte/article/details/12104823 有时候我们需要在不同的时候改变ActionBar中MenuItem的项数,或者隐藏某些MenuItem,百度上找了很久没什好资料,还是Google了一下,StackOverFlow上有大神解决了. 先看看  StackOverFlow 上的问题: How do I hide a menu item in the actionbar?      我来总结一下:    (1)在Activ…
有时候我们需要在不同的时候改变ActionBar中MenuItem的项数,或者隐藏某些MenuItem,百度上找了很久没什好资料,还是Google了一下,StackOverFlow上有大神解决了. 先看看  StackOverFlow 上的问题: How do I hide a menu item in the actionbar?    我来总结一下:    (1)在Activity的onCreateOptionMenu()方法中获取每一个MenuItem,然后再满足某一条件下调用setVis…
我的环境: Virtualbox 4.3.10 r93012 操作系统:win7 问题:Virtualbox在使用拷贝的虚拟盘时会提示uuid冲突: Because a hard disk with uuid '' already exists. 依照网上的说法,执行VBoxManage改动uuid报错: D:\Program Files\Oracle\VirtualBox>VBoxManage  internalcommands sethduuid D:\vm\ rac1\model.vdi…
Windows编程中常常涉及到的一个问题是字符串之间的转换,开发过程总是遇到编译器提示无法格式转换的问题.于是自己总结了几种解决的方法. 1.通过T2W转换宏 char* szStr = "balabala"; CString str = CString(szStr); USES_CONVERSION;    LPCWSTR wszClassName = new WCHAR[str.GetLength()+1];    wcscpy((LPTSTR)wszClassName,T2W((…
setHomeButtonEnabled这个小于4.0版本的默认值为true的.但是在4.0及其以上是false,该方法的作用:决定左上角的图标是否可以点击.没有向左的小图标. true 图标可以点击  false 不可以点击. actionBar.setDisplayHomeAsUpEnabled(true)    // 给左上角图标的左边加上一个返回的图标 .对应ActionBar.DISPLAY_HOME_AS_UP actionBar.setDisplayShowHomeEnabled(…
转自: http://blog.csdn.net/lovexieyuan520/article/details/9974929 http://blog.csdn.net/cyp331203/article/details/44922863 (这个讲的详细) setHomeButtonEnabled这个小于4.0版本的默认值为true的, 但是在4.0及其以上是false. 该方法的作用:决定左上角的图标是否可以点击.没有向左的小图标. true 图标可以点击  false 不可以点击. acti…
setHomeButtonEnabled这个小于4.0版本的默认值为true的.但是在4.0及其以上是false,该方法的作用:决定左上角的图标是否可以点击.没有向左的小图标. true 图标可以点击  false 不可以点击. actionBar.setDisplayHomeAsUpEnabled(true)    // 给左上角图标的左边加上一个返回的图标 .对应ActionBar.DISPLAY_HOME_AS_UP actionBar.setDisplayShowHomeEnabled(…
记录一下各种隐藏html元素的方法 <!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <script type="text/javascript" src="http://vuejs.org/js/vue.min.js"></script> <script t…