
app常识
走着学磔
每天学一点,总会有所收获的
展开
-
Android开发--获取本地ip(wifi 3g)
/** * 获取本地ip * @return */ public String getLocalIpAddress() { String ipaddress = ""; try { Enumeration<NetworkInterface>原创 2016-01-26 10:23:48 · 342 阅读 · 0 评论 -
Android开发--调用Android系统设置项
Intent mIntent = new Intent(); ComponentName comp = new ComponentName("com.android.settings", "com.android.settings.WirelessSettings"); mIntent.setComponent(comp); mIntent.setAction("android.intent.ac原创 2016-01-26 10:28:56 · 587 阅读 · 0 评论 -
android-secheme简单分享
今天看到一个demo,可以找到手机内所有能够分享的应用,并进行分享。 这个是测试的效果图: 直接上代码,通过intent隐式意图调用: private void share() { Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); inten原创 2016-03-29 15:35:41 · 855 阅读 · 0 评论