0
我用這個代碼,它的工作時,我從活動和片段如何在android中獲取廣告ID?
import com.google.android.gms.ads.identifier.AdvertisingIdClient.Info;
Info adInfo = null;
try {
adInfo = AdvertisingIdClient.getAdvertisingIdInfo(mContext);
} catch (IOException e) {
e.printStackTrace();
} catch (GooglePlayServicesAvailabilityException e) {
e.printStackTrace();
} catch (GooglePlayServicesNotAvailableException e) {
e.printStackTrace();
}
String AdId = adInfo.getId();
稱爲但是,當我從待定像包裝意圖刪除然後叫我想打電話給當時的Web服務我需要廣告ID,但我得到null.if你以前做過的人請提前告訴我。提前感謝。