To Enable the Developer and Performance settings on CyanogenMod 10.1 In the Settings app, choose the About Phone (or About Tablet) option.Scroll down, and tap the Build number seven times. On the seventh tap, you will be notified that "You are now a…
出于: androidChina   http://www.androidchina.net/3595.html 学习 Android 至今,大大小小的坑没少踩,庆幸的是,在强大的搜索引擎与无私奉献的人们的帮助下,我遇到的坑都顺利地被填平了. 为了便于日后遇到同样的问题时,能免于再次搜索带来的麻烦,我养成了收藏书签的习惯,随着书签(Tips)的日积月累,我想,是时候该有这个项目了. 如果你是个 Android 新人,那么我希望这份列表,可以成为你踩到坑时的不完全手册. 当然,这份列表一定会有遗漏…
java.lang.SecurityException: Permission Denial: reading com.android.providers.media.MediaProvider uri content://media/external/images/media/20 from pid=711, uid=10074 requires android.permission.READ_EXTERNAL_STORAGE, or grantUriPermission() 打开系统自带相册…
在使用NumberPicker.DataPicker,TimePicker这几个控件时,非常easy出现例如以下这个界面 可是我们想要的却是以下图示的结果 改动Application.activity的android:theme这个值. 最直观的效果去掉android:theme就可以. 本tips 在 android4.4上測试通过.…
(1).设置图片缓存大小,一般可以设置为内存的1/8 int memoryCache = (int) (Runtime.getRuntime().maxMemory() / 8); (2). (3). App的启动页可使用Activity的theme属性来设置,这样主界面未加载完成时就显示theme,加载完成后在Activity的onCreate函数中再设置setTheme(null)来销毁这个启动页,加载正常界面即可.比单独写一个Activity来展示启动页开销小,效率高. 参考: http:…
先翻译刚好在研究到的一段,其余的无限期待续. 1.ObsoleteLayoutParam不起作用的标签 Invalid layout param in a LinearLayout: layout_centerVertical Invalid layout param in a ScrollView: layout_weight Issue: Looks for layout params that are not valid for the given parent layoutId: Obs…
copy from https://github.com/operando/Android-Command-Note Android Command Note Logcat adb logcat -v time adb logcat -v time -b main adb logcat -v time -b system adb logcat -v time -b events adb logcat -v time -b radio adb shell logcat -b all adb log…
./gradlew app:dependencies or install this Android Studio Plugin https://github.com/rholder/gradle-view…
Android SDK 并没有包含 Java 7 新增加的命名捕获组功能,需要使用第三方库 https://github.com/tony19/named-regexp import com.google.code.regexp.Pattern; import com.google.code.regexp.Matcher; public class NamedRegexpTest { public static void main(String[] args) { // pattern cont…
[译]Android Studio 使用技巧系列(一)-快捷键 [译]Android Studio 使用技巧系列(二)-快捷键 [译]Android Studio 使用技巧系列(三)-调试 [译]Android Studio 使用技巧系列(四) [译]Android Studio 使用技巧系列(五) [译]Android Studio 使用技巧系列(六) Android Studio你不知道的快捷键(一) Android Studio你不知道的快捷键(二) Android Studio你不知道的…