這很奇怪,這個問題還沒有被問到。從片段中的活動獲取布爾值
我需要檢查手機存儲在我的活動,在我的片段獲取返回的值
/*MainActivity*/
boolean hasLowStorage(){
IntentFilter lowStorageFilter = new IntentFilter(Intent.ACTION_DEVICE_STORAGE_LOW);
return registerReceiver(null, lowStorageFilter) != null;
}
當調用從活動的空隙的方法,我們這樣做:
/*fragment*/
((MainActivity) getActivity()).yourMethod();
怎麼辦我們從片段中調用布爾值的值?
已經試過了。 「無法解析符號」 – Lucem