三星集团

我的下一部手机?

醉酒当歌 提交于 2020-03-06 06:32:11
最近发现每次用完手机头有点闷闷的感觉,怀疑是不是手机有问题(或者自己脑袋有问题),网上查了一下, SAR 值(一种描述辐射大小的数值)居然有 1.51 W/kg (我用的手机是 Palm650 ),而有的手机才 0.5 左右,网上也有不少用 650 的胖友反映同样的问题。我干脆花了半天时间研究手机辐射,下面是我的最新研究成果: 手机 SAR 值(即辐射值)国际标准是 1.6 以下允许生产和销售(强制标准,有些地方是 2.0 ),欧盟权威小组研究发现如果手机辐射值大于 1.3 瓦特 / 千克就会破坏人体 DNA ,而我国卫生部门则表示,只有手机辐射值低于 1.0 瓦 / 千克才能保证对真正人体无害。这里提一句:卫生部门已经向国家建议我国的手机辐射必须控制在 1.0 以内,但是最终未被采纳,等于没建议过……显然,我的手机 1.51 这个数字是位于“危险”之列的,尽管这款 650 在功能上很爽,我还是决定换一款手机,当然辐射一定要低一点,最好在 0.8 以内(我电话比较多,又不可能时时带着耳机)。 下面是官方公布的手机辐射比较低的几款型号(都在 0.5 以下的): SAR Rating ( W /kg) - 10g Phone Model Manufacturer 0.12 MPx200 Motorola 0.16 Z600 Sony Ericsson 0.17 7280

uboot官方nkconfig脚本分析

…衆ロ難τιáo~ 提交于 2020-03-01 21:01:47
1、解析这个文件boards.cfg,把boards.cfg配置的那一行代码弄过来,赋值给line ,指明$1'$2.....$8[25-36] $1 = Active $2 = arm $3 = armv7 $4 = s5pc1xx $5 = samsung $6 = goni $7 = s5p_goni $8 = - 2、给CONFIG_NAME赋值 [52] 3、给变量赋值,使arch=arm,cpu=armv7,board=goni,vendor=samsung,soc=s5pc1xx 4、输出提示信息,配置的时候生成这句话“Configuring fors5p_goni_config board...” 5、创建符号链接 6、创建config.mk [129-143] 7、指明board文件路径 [145-151] 8、创建config.h 来源: https://www.cnblogs.com/zyj23/p/12391833.html

Golang 接口

霸气de小男生 提交于 2020-01-30 01:09:29
定义 把所有的具有共性的方法定义在一起,任何其他类型只要实现了这些方法就是实现了这个接口 举例 接口Phone, 有一个函数call type Phone interface { call() } 定义2个strct type NokiaPhone struct { } type Samsung struct { } 实现接口中的call()函数 func (nokiaPhone NokiaPhone) call() { fmt.Println("I'm NokiaPhone, call.....") } func (samsung Samsung) call() { fmt.Println("I'm Sumsung, call........") } 测试 var phone Phone phone = new(NokiaPhone) fmt.Printf("%p, %T", phone, phone) // %p 输出指针地址,%T 输出类型 phone.call() phone = new(Samsung) phone.call() 输出 0x121bf38, *basicTest.NokiaPhone I'm NokiaPhone, call..... I'm Sumsung, call........ 注意:new 得到的是个指针 来源: https://www

DIAL: DIscovery And Launch简介

与世无争的帅哥 提交于 2020-01-29 23:56:45
运行以下VBScript脚本 Dim deviceFinder Set deviceFinder = CreateObject("UPnP.UPnPDeviceFinder") Dim devices Set devices = deviceFinder.FindByType("ssdp:all", 0) For Each device In devices WScript.Echo device.FriendlyName + " " + device.Type Next 可以得到类似下面的结果 [TV] Samsung 6 Series (55) urn:schemas-upnp-org:device:MediaRenderer:1 [TV] Samsung 6 Series (55) urn:samsung.com:device:RemoteControlReceiver:1 [TV] Samsung 6 Series (55) urn:samsung.com:device:RemoteControlReceiver:1 [TV] Samsung 6 Series (55) urn:dial-multiscreen-org:device:dialreceiver:1 [TV] Samsung 6 Series (55) urn:dial-multiscreen-org

swipe effect like in samsung phone calling and message [duplicate]

匿名 (未验证) 提交于 2019-12-03 08:28:06
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: This question already has an answer here: Simple swipe gesture to activity tutorial? [closed] 2 answers I need to implement swipe in listview like in samsung android device, in call log, when we swipe left to right call is being placed and right to left then message is being placed Is this possible using swipeListView SwipeListViewDemo or give me other solution 回答1: Have a look at this git repo.. This may well be what you are searching for.. 47Deg 回答2: Yes you can do using fling gesture Some code to help you SimpleOnGestureListener

How to stop excessive Object creation on Samsung phones?

匿名 (未验证) 提交于 2019-12-03 03:05:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I am have problems with animations slowing down on many Android Samsung phones. I have traced the problem and it is too much garbage collection. However, none of the objects are being created directly by my code. This is the stack trace from the Allocation Tracker in DDMS. at com . samsung . android . multiwindow . MultiWindowStyle$1 . createFromParcel ( MultiWindowStyle . java : 493 ) at com . samsung . android . multiwindow . MultiWindowStyle$1 . createFromParcel ( MultiWindowStyle . java : 491 ) at com . samsung . android .

Camera2 API AutoFocus with Samsung S5

匿名 (未验证) 提交于 2019-12-03 03:00:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm working with the new Camera2 API on a Samsung S5. The supported hardware level this device is reporting is LEGACY , which is fine. However, I cannot seem to be able to auto-focus on this device. The request to trigger auto-focus looks like this: previewRequestBuilder.set(CaptureRequest.CONTROL_AF_MODE, CaptureRequest.CONTROL_AF_MODE_AUTO); previewRequestBuilder.set(CaptureRequest.CONTROL_AF_TRIGGER, CaptureRequest.CONTROL_AF_TRIGGER_START); state = STATE_PREVIEW; try { captureSession.setRepeatingRequest(previewRequestBuilder.build(),

Samsung Galaxy Devices can't use geolocation.getCurrentPosition

匿名 (未验证) 提交于 2019-12-03 02:52:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: OK, so I've been looking for an adequate response to this issue for quite some time. I have a web application that uses navigator.geolocation.getCurrentPosition to get a user's position. The native browser on the Samsung Galaxy devices nearly always have problems with the getCurrentPosition code. I have tried all kinds of variations of this code with callbacks and timeouts, but its always the same issue. Plenty of people have documented this issue, and some indicate that restarting the device will work (sometimes restarting does

Samsung Intent For OnActivityResult coming Null when call camera

匿名 (未验证) 提交于 2019-12-03 02:33:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am using following code to get picture from camera. Except samsung it is working fine in other mobiles. please let me know what i am doing wrong. final File root = new File(Environment.getExternalStorageDirectory() + File.separator + "temp" + File.separator); root.mkdir(); final String fname = "img_" + System.currentTimeMillis() + ".jpg"; final File sdImageMainDirectory = new File(root, fname); outputFileUri = Uri.fromFile(sdImageMainDirectory); // Camera. final List<Intent> cameraIntents = new ArrayList<Intent>(); final Intent

ADB doesn&#039;t recognize Samsung S5830(Ace) in Linux Ubuntu 10.04

匿名 (未验证) 提交于 2019-12-03 02:31:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I can't use Galaxy ACE with adb, here's what I see when I try to run app: On Windows 7 I've installed Kies and everything went fine. But I can't find driver for linux. Any help? Thanks. EDIT Android Debug Bridge version 1.0.26 回答1: You will need to add udev rules described here: http://developer.android.com/guide/developing/device.html 文章来源: ADB doesn't recognize Samsung S5830(Ace) in Linux Ubuntu 10.04