开发中遇到的问题

在ubuntu中google的英文版浏览器(chromium)中印象笔记是国际版的,怎么使用中文版的


eclipse 导入jar 包


ubuntu 上使用hierarchyviewer


android Unable to instantiate activity ComponentInfo
排查步骤
1、检查manifest中是否已注册该activity
2、否是因为使用到的jar包未打包进去、或者包没有导入正确引起的
有些包是有优先级的,需要放在top,否则就找不到。
在导入java build path的时候有的jar包没有选上。
所以在导入工程的时候,不经Libraries要导入相应的jar包,同时order and export 选项中的相应jar包也要记得打勾
Eclipse中右键项目,打开Properties,点击左侧栏中的Java Build Path,点击Order and Export标签栏,钩上android-support-v4.jar包;

怎么看一个app使用了那些jar


ubuntu 上apk反编译


aapt

反编译生成的src中 android.support文件包 是 android-support-vx.jar 反编译生成的吗




onTouchEvent(), onTouchRece..Event()的区别


AnmiontSet


在 android源码中添加新的app
http://www.cnblogs.com/zhangweia/archive/2010/08/19/1803445.html


res下public.xml的作用是?
https://stackoverflow.com/questions/9348614/what-is-the-use-of-the-res-values-public-xml-file-on-android
The file res/values/public.xml is used to assign fixed resource IDs to Android resources.
This file defines the base public resources exported by the platform, which must always exist
该文件指定了资源ID,相当于R中的ID,一般用在系统应用上


java 死循环
What is the difference between a standard while(true) loop and for(;;)?


AndroidRuntimeException: You cannot combine swipe dismissal and the action bar. ?


java 反编译 代码还原  ?


自定义控件中自定义属性 ?




Manifest 中 coreApp="true" ?
http://blog.csdn.net/zijie999/article/details/8620883
Manifest 中 android:largeHeap="true"
android:supportsRtl="true"
        
android style 与 theme ? 区别 ?
http://blog.csdn.net/qinjuning/article/details/8829877


android 怎么判断是否处于开发者模式 ?


如果在 application 中加入了主题,是否有必要在activity中加入同样的主题 
http://1622511.blog.51cto.com/1612511/575078
 activity的样式主题, 如果没有设置,则activity的主题样式从属于应用程序,参见<application>元素的theme属性   
 
系统升级 
http://forum.xda-developers.com/showthread.php?t=2238499 //如果有gms框架,ota会出现的问题,还未知道解决办法


http://blog.csdn.net/linux_lyb/article/details/5152689
因此要添加“系统更新”的功能, 必须:
1、有avticity处理android.settings.SYSTEM_UPDATE_SETTINGS
2、这个包存在/system/app,不能是由adb install装进去的


Settings 中 SoftwareUpdates.java调用com.android.settings.Utils.java
  中 updatePreferenceToSpecificActivityOrRemove()根据system.img升级
 
android 中设置了默认软件怎么去除掉
 
 
 
 
 
 

你可能感兴趣的:(android)