小编use*_*250的帖子

Google Play服务打破了GSM网络

环聊,Google +和其他应用需要更新Google Play服务.但谷歌播放服务(8.4.89)打破了GSM网络,出现了这样的错误:

E/WifiManager(2841):mWifiServiceMessenger == NULL E/MPlugin(2947):不支持的类:com.mediatek.common.telephony.IOnlyOwnerSimSupport E/WifiManager(2947):mWifiServiceMessenger == NULL E/MPlugin(1814):不支持的类:com.mediatek.common.telephony.IOnlyOwnerSimSupport E/GmsWearableNodeHelper(1814):GoogleApiClient连接失败:ConnectionResult {的StatusCode = API_UNAVAILABLE,分辨率= NULL,消息= NULL} 03-02 16:51:54.329:E/MPlugin(2878) :不支持的类:com.mediatek.common.telephony.IOnlyOwnerSimSupport E/ReceiverController(803):filterReceiver()具有空动作忽略03-02 16:51:54.676:E/ReceiverController(803):filterReceiver()具有空动作忽略E/BaseAppContext(2878):试图停止全局GMSCore RequestQueue.这可能是无意的,所以无视.E/MPlugin(1814):不支持的类:com.mediatek.common.telephony.IOnlyOwnerSimSupport 03-02 16:51:56.209:E/MPlugin(3054):不支持的类:com.mediatek.common.telephony.IOnlyOwnerSimSupport 03-02 16:51:56.285:E/Babel_SMS(3054):canonicalizeMccMnc:无效mccmnc 03-02 E/Babel_SMS(3054):canonicalizeMccMnc:无效mccmnc nullnull E/SQLiteLog(3054):(284)自动上conversation_participants_view指数(conversation_id)03 -02 16:51:56.910:E/SQLiteLog(3054):( 284)自动索引

在使用Google Market更新Google Play服务后,GSM没有任何报道,也没有SIM卡(根据Android).Mobile是基于Mediatek 6735和Android 5.1的双SIM卡卸载Google Play服务更新,并重新启动GSM再次运行.可能的解决方法是,使用原始Google Play服务重新启动,并在此安装Google Play服务更新后.

Google Play服务错误,设备不兼容,......?

android google-play-services

11
推荐指数
0
解决办法
4522
查看次数

Fedora 20上的Eclipse崩溃

在任何情况下我都无法在Fedora 20中运行Eclipse,总是崩溃.

java-1.7.0-openjdk
java-1.7.0-openjdk-devel
java-1.7.0-openjdk-headless

Linux * 3.12.7-300.fc20.x86_64 #1 SMP Fri Jan 10 15:35:31 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

eclipse-platform x86_64   1:4.3.1-11.fc20

尝试使用发行版和eclipse.org下载的版本

总是一样.启动eclipse Kepler并崩溃.使用eclipse市场快速崩溃.

日志:


    !ENTRY org.eclipse.osgi 2 1 2014-01-14 17:30:20.014
    !MESSAGE NLS unused message: LaunchConfigurationType_1 in: org.eclipse.debug.internal.core.DebugCoreMessages
    !SESSION 2014-01-15 10:55:20.259 -----------------------------------------------
    eclipse.buildId=4.3.0.M20130911-1000
    java.version=1.7.0_45
    java.vendor=Oracle Corporation
    BootLoader constants: OS=linux, ARCH=x86_64, WS=gtk, NL=es_ES
    Framework arguments:  -product org.eclipse.epp.package.standard.product
    Command-line arguments:  -os linux -ws gtk -arch x86_64 -product org.eclipse.epp.package.standard.product

    !ENTRY org.eclipse.core.resources 2 10035 2014-01-15 10:55:58.045
    !MESSAGE The workspace exited with unsaved …

java eclipse fedora20

7
推荐指数
2
解决办法
4424
查看次数

javascript动态原型

我希望在创建时扩展一个新的JS对象,其他对象传递一个参数.这段代码不起作用,因为我只能在没有动态参数的情况下扩展对象.

otherObject = function(id1){
    this.id = id1;
};

otherObject.prototype.test =function(){
    alert(this.id);
};

testObject = function(id2) {
    this.id=id2;
};

testObject.prototype = new otherObject("id2");/* id2 should be testObject this.id */


var a = new testObject("variable");
a.test();
Run Code Online (Sandbox Code Playgroud)

有什么建议吗?

javascript

3
推荐指数
1
解决办法
4026
查看次数