Eclipse for android 设置代码提示功能1、设置 java 文件的代码提示功能打 开
Eclipse 依次选择 Window > Preferences > Java > Editor - Content Assist >
Auto activation triggers for J...
分类:
移动开发 时间:
2014-05-08 19:16:31
阅读次数:
513
1.确认下 这句话是不是在 标志之前。 不在的话,请放到
标志之前。2.如果上面操作后,出现“Warning: session_start() [function.session-start”
信息解决办法:修改php.ini中的session.auto_start = 0 为 session.a....
分类:
Web程序 时间:
2014-05-08 13:56:36
阅读次数:
369
Found the solution myself in the end. The problem
was not with theLinearLayout,but with theScrollView(seems weird, considering the
fact that theScroll...
分类:
移动开发 时间:
2014-05-08 13:42:02
阅读次数:
321
在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如
Button、Te...
分类:
移动开发 时间:
2014-05-08 11:56:47
阅读次数:
464
一丶margin:0
auto;试用最多的方法,简单实用。二丶vertical-align:middle;只适用于内嵌元素,比如说一个div中有一个图片和文字,要让图片和文字中线对齐。
关注前端,关注用户体验-冀 三丶position:relative;通过给...
分类:
Web程序 时间:
2014-05-08 10:28:41
阅读次数:
431
auto:自动类型推断和返回值占位,与c++98定义不同(临时变量定义)// auto a; //
错误,没有初始化表达式,无法推断出a的类型 // auto int a = 10; // 错误,auto临时变量的语义在C++11中已不存在, 这是...
分类:
编程语言 时间:
2014-05-08 10:12:08
阅读次数:
436
使用意图链接活动
1、新建一个名为“UsingIntent”的项目,右击src文件夹下的包名,选择New-->Class选项,并将新的类文件名命名为“SecondActivity”;
2、打开AndroidManifest.xml文件,添加如下代码:
<activity
android:name=".SecondActivity"
...
分类:
移动开发 时间:
2014-05-07 16:02:01
阅读次数:
304
auto listener = EventListenerTouchOneByOne::create();
listener->setSwallowTouches(true);
auto sprite = this->getChildByTag(virTag)->getChildByTag(jumpTag);
listener->onTouchBegan = CC_CALLBACK_2...
分类:
其他好文 时间:
2014-05-07 15:41:12
阅读次数:
279
我们知道资源被注册到R.java我们通过R.java就可以读取到界面中的组件。跟我们.net一样,通过ID来读取组件知识点:通过R.java读取组件MainActivity.java通过findViewById方法查找组件在Layout中用@string查找字符串,这个跟我们MVC中国际化基本相识,...
分类:
移动开发 时间:
2014-05-07 14:27:09
阅读次数:
438
显示操作进度的对话框
1、使用上一篇创建的同一项目,在activity_main.xml文件中添加一个Button:
<Button
android:id="@+id/btn_dialog3"
android:layout_width="fill_parent"
android:layout_height="wrap_cont...
分类:
移动开发 时间:
2014-05-07 11:30:28
阅读次数:
434