在线笔记
全部博文(596)
发布时间:2014-11-12 15:43:35
http://stackoverflow.com/questions/22821420/this-class-should-be-public-android-support-v7-internal-widget-actionbarview-hoOn the "v7-appcompat" library:preferences -> Android Lint PreferencesSearch for "Instantiatable" and set to Warning.......【阅读全文】
发布时间:2014-11-12 15:33:27
引用id号为image2android:id="@id/image2"生成id号为image2android:id="@+id/image2"......【阅读全文】
发布时间:2014-11-12 15:28:42
<string name="app_name" >hello</string> <string name="app_name" translatable="false">hello</string>......【阅读全文】
发布时间:2014-11-12 15:02:47
解决方法:1. 换个新的工作目录workspace2出现场景1. 32位的eclipse使用了工作目录workspace2. 64位的eclipse使用了同样的目录workspace......【阅读全文】
发布时间:2014-11-10 23:13:27
在Java中,this通常指当前对象,super则指父类的。当你想要引用当前对象的某种东西,比如当前对象的某个方法,或当前对象的某个成员,你便可以利用this来实现这个目的,当然,this的另一个用途是调用当前对象的另一个构造函数,这些马上就要讨论。如果你想引用父类的某种东西,则非 super莫属。由于this与super有如此相似.........【阅读全文】