随笔分类 - Android
摘要:adb查看logcat adb logcat :* *:S 查看指定TAG的Logadb查看最上层activity:linux: adb shell dumpsys activity | grep "mFocusedActivity"windows: adb shell dumpsys activity | findstr "mFocusedActivity"adb修改可读可写权限#mount#...
阅读全文
摘要:String title = "\n\""+itemInfo.itemSSID+"\" "; View password_view = AppData.inflater.inflate(R.layout.wifi_cancel_connect, null); TextView password_ti
阅读全文
摘要:String title = ""; if(itemInfo!=null) title = "\n\""+itemInfo.itemSSID+"\" "; else title = "\n\""+ssid+"\" "; title += getResources().getString(R.string.network_wifi_password_error_info...
阅读全文
摘要:查看所有网络信息 查看 eth0 查看DNS 查看ip 设置网关 添加dns 查询eth0配置 ifconfig eth0配置
阅读全文
摘要:找两个字符中间的内容比如找abc5dfsdfs6H a-H的内容,a.*?H
阅读全文
摘要:ipDNS_text.requestFocus(); InputMethodManager imm = (InputMethodManager)ipDNS_text.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); imm.to
阅读全文
摘要:参数从Local中获取,例如:Local.ENGLISH; 使用之前应该root系统,adb shell ->su 然后# pm grant com.example.clickdemo android.permission.CHANGE_CONFIGURATION手动赋予权限,否则会报反射异常
阅读全文
摘要:添加GridItem布局XML文件 主界面添加GridView布局XML文件 自定义GridView适配器 主界面Activity AppInfo类
阅读全文