Snap for 10225371 from a171a9d426 to udc-release
Change-Id: Ifbe5058eec4b7a925d5fd3ed322b471193a2d4ac
This commit is contained in:
@@ -1707,14 +1707,14 @@
|
||||
android:value="@string/menu_key_apps"/>
|
||||
</activity-alias>
|
||||
|
||||
<activity-alias android:name="com.google.android.settings.ManageFullScreenIntent"
|
||||
<activity-alias android:name="ManageFullScreenIntent"
|
||||
android:exported="true"
|
||||
android:targetActivity=".spa.SpaBridgeActivity">
|
||||
<meta-data android:name="com.android.settings.spa.DESTINATION"
|
||||
android:value="TogglePermissionAppList/UseFullScreenIntent"/>
|
||||
</activity-alias>
|
||||
|
||||
<activity-alias android:name="com.google.android.settings.AppManageFullScreenIntent"
|
||||
<activity-alias android:name="AppManageFullScreenIntent"
|
||||
android:exported="true"
|
||||
android:targetActivity=".spa.SpaAppBridgeActivity">
|
||||
<intent-filter>
|
||||
|
||||
@@ -7890,7 +7890,7 @@
|
||||
<string name="notification_conversation_summary_low">No sound or vibration and appears lower in conversation section</string>
|
||||
|
||||
<!-- [CHAR LIMIT=150] Notification Importance title: normal importance level summary -->
|
||||
<string name="notification_channel_summary_default">May ring or vibrate based on phone settings</string>
|
||||
<string name="notification_channel_summary_default">May ring or vibrate based on device settings</string>
|
||||
|
||||
<!-- [CHAR LIMIT=150] Notification Importance title: high importance level summary -->
|
||||
<string name="notification_channel_summary_high">When device is unlocked, show notifications as a banner across the top of the screen</string>
|
||||
|
||||
@@ -29,6 +29,8 @@ import android.view.View;
|
||||
import android.widget.FrameLayout;
|
||||
import android.widget.ListView;
|
||||
|
||||
import androidx.core.view.ViewCompat;
|
||||
|
||||
import com.android.internal.app.LocalePickerWithRegion;
|
||||
import com.android.internal.app.LocaleStore;
|
||||
import com.android.settings.R;
|
||||
@@ -105,12 +107,16 @@ public class AppLocalePickerActivity extends SettingsBaseActivity
|
||||
@Override
|
||||
public boolean onMenuItemActionCollapse(MenuItem item) {
|
||||
mAppBarLayout.setExpanded(false /*expanded*/, false /*animate*/);
|
||||
ViewCompat.setNestedScrollingEnabled(mAppLocaleDetails.getListView(), true);
|
||||
ViewCompat.setNestedScrollingEnabled(mLocalePickerWithRegion.getListView(), true);
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onMenuItemActionExpand(MenuItem item) {
|
||||
mAppBarLayout.setExpanded(false /*expanded*/, false /*animate*/);
|
||||
ViewCompat.setNestedScrollingEnabled(mAppLocaleDetails.getListView(), false);
|
||||
ViewCompat.setNestedScrollingEnabled(mLocalePickerWithRegion.getListView(), false);
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -171,4 +177,4 @@ public class AppLocalePickerActivity extends SettingsBaseActivity
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -433,7 +433,6 @@ public class MobileNetworkRepository extends SubscriptionManager.OnSubscriptions
|
||||
mActiveSubInfoEntityList = availableSubInfoEntityList.stream()
|
||||
.filter(SubscriptionInfoEntity::isActiveSubscription)
|
||||
.filter(SubscriptionInfoEntity::isSubscriptionVisible)
|
||||
.sorted((e1, e2) -> Integer.compare(e1.simSlotIndex, e2.simSlotIndex))
|
||||
.collect(Collectors.toList());
|
||||
if (DEBUG) {
|
||||
Log.d(TAG, "onActiveSubInfoChanged, activeSubInfoEntityList = "
|
||||
|
||||
@@ -134,7 +134,6 @@ public class MobileNetworkSummaryController extends AbstractPreferenceController
|
||||
return mContext.getString(R.string.mobile_network_tap_to_activate, displayName);
|
||||
} else {
|
||||
return mSubInfoEntityList.stream()
|
||||
.sorted((e1, e2) -> Integer.compare(e1.simSlotIndex, e2.simSlotIndex))
|
||||
.map(SubscriptionInfoEntity::getUniqueDisplayName)
|
||||
.collect(Collectors.joining(", "));
|
||||
}
|
||||
|
||||
@@ -228,10 +228,10 @@ public class NetworkSelectSettings extends DashboardFragment {
|
||||
|
||||
@Override
|
||||
public void onStop() {
|
||||
super.onStop();
|
||||
if (mWaitingForNumberOfScanResults <= 0) {
|
||||
stopNetworkQuery();
|
||||
}
|
||||
super.onStop();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user