[Audiosharing] Hide / show audio streams category.

Only show when there is an active LE buds connecting, and the source is
not currently broadcasting.

Bug: 308368124
Test: Manual
Change-Id: I2cc172a66648901ac8a7e49c5aac734b6bbc7e33
This commit is contained in:
chelseahao
2023-11-23 15:42:28 +08:00
committed by Chelsea Hao
parent 40cc58f5a1
commit 78a667e7ca
5 changed files with 102 additions and 24 deletions

View File

@@ -64,7 +64,7 @@ public abstract class AudioSharingBasePreferenceController extends BasePreferenc
mPreference.setVisible(isVisible);
}
private boolean isBroadcasting() {
protected boolean isBroadcasting() {
return mBroadcast != null && mBroadcast.isEnabled(null);
}
}