compile 'com.facebook.network.connectionclass:connectionclass:1.0.1'
public interface ConnectionClassStateChangeListener { public void onBandwidthStateChange(ConnectionQuality bandwidthState); }
and subscribe with the listener:
ConnectionClassManager.getInstance().register(mListener);
Alternatively, you can manually query for the current connection quality bucket with getCurrentBandwidthQuality().
ConnectionQuality cq = ConnectionClassManager.getInstance().getCurrentBandwidthQuality();
转载自:https://www.ctolib.com/network-connection-class.html
转载自:https://help.aliyun.com/document_detail/139662.html
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/220778.html原文链接:https://javaforall.net
