SVN的基本操作本文地址: http://blog.csdn.net/caroline_wendy$ svn diff //显示修改$ post-review --summary="bug fix” //发送Review$ post-review -r 100 --summary=这次修改的内容 //使用同一个版本号$ svn ci -m "review:8868 MOD:bug fix” //提...
分类:
系统相关 时间:
2014-11-15 07:49:20
阅读次数:
228
Android - 错误:"No resource found that matches the given name android:Theme.Material"本文地址: http://blog.csdn.net/caroline_wendy错误: "No resource found that matches the given name 'android:Theme.Material.L...
分类:
移动开发 时间:
2014-11-07 08:42:05
阅读次数:
172
设置ImageView为全屏显示本文地址: http://blog.csdn.net/caroline_wendyImageView默认会适应屏幕大小, 如果想使用全屏填充, 则需要使用:android:scaleType="fitXY"
android:scaleType="matrix"
注意android:scaleType的参数选择.参考: http://developer.android...
分类:
移动开发 时间:
2014-11-07 08:41:44
阅读次数:
350
错误: "Invalid 9-patch, cannot be less than 3 pixels in a dimension"本文地址: http://blog.csdn.net/caroline_wendy错误: "Invalid 9-patch, cannot be less than 3 pixels in a dimension: Invalid 9-patch, cannot be...
分类:
移动开发 时间:
2014-11-07 08:41:05
阅读次数:
319
隐藏视图View: "android:visibility"本文地址: http://blog.csdn.net/caroline_wendy视图可以选择隐藏(gone), 可视(visible), 不可视(invisible).可见(visible):XML文件:android:visibility="visible"Java代码:view.setVisibility(View.VISIBLE)...
分类:
移动开发 时间:
2014-11-07 08:40:01
阅读次数:
204
错误: java.lang.IllegalStateException: Already attached本文地址: http://blog.csdn.net/caroline_wendy可能原因: @Override
protected void onContinueCreate(Bundle savedInstanceState) {
super.onCreate...
分类:
移动开发 时间:
2014-11-07 08:39:47
阅读次数:
1125
Activity定制横屏(landscape)显示本文地址: http://blog.csdn.net/caroline_wendyAndroid横屏(landscape)显示: android:screenOrientation="landscape"可以在特定的Activity中声明,这个属性,则默认会是横屏;screenOrientation的属性需要定义在Activity内, 即Andro...
分类:
移动开发 时间:
2014-11-07 08:39:40
阅读次数:
187
系统语言(language)定制资源值(values)本文地址: http://blog.csdn.net/caroline_wendy语言代码参考:http://www.loc.gov/standards/iso639-2/php/code_list.php创建资源值文件夹(values), 添加语言标记, 常用英文和繁体中文:values-en: 英文values-zh-rTW: 繁体中文...
分类:
移动开发 时间:
2014-11-07 08:39:29
阅读次数:
179
资源(resource)转换为String本文地址: http://blog.csdn.net/caroline_wendyAndroid建议资源的动态绑定, 即把string写入资源内, 然后执行动态绑定.有时需要把资源(resource)ID转换为相应的字符串String.使用:String mystring = getResources().getString(R.string.mystri...
分类:
移动开发 时间:
2014-11-07 08:39:16
阅读次数:
192
FrameLayout覆盖顺序本文地址: http://blog.csdn.net/caroline_wendyFrameLayout: Child views are drawn in a stack, with the most recently added child on top.FrameLayout在一个栈(stack)内, 最先出现的在最下面,最后出现的在最上面。注意FrameLay...
分类:
移动开发 时间:
2014-11-07 08:38:22
阅读次数:
279