Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c320ef33 authored by Julia Reynolds's avatar Julia Reynolds Committed by Android (Google) Code Review
Browse files

Merge "Properly show conversation settings"

parents a7412b33 a1c0dc75
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -41,13 +41,14 @@ public class ConversationNotificationSettings extends NotificationSettings {
    @Override
    public void onResume() {
        super.onResume();
        if (mUid < 0 || TextUtils.isEmpty(mPkg) || mPkgInfo == null || mChannel == null
                || mConversationInfo == null) {
        if (mUid < 0 || TextUtils.isEmpty(mPkg) || mPkgInfo == null || mChannel == null) {
            Log.w(TAG, "Missing package or uid or packageinfo or channel");
            finish();
            return;
        }
        getActivity().setTitle(mConversationInfo.getLabel());
        getActivity().setTitle(mConversationInfo == null
                ? mChannel.getName()
                : mConversationInfo.getLabel());

        for (NotificationPreferenceController controller : mControllers) {
            controller.onResume(mAppRow, mChannel, mChannelGroup, mConversationDrawable,
+3 −0
Original line number Diff line number Diff line
@@ -270,6 +270,9 @@ abstract public class NotificationSettings extends DashboardFragment {
        String conversationId = intent != null
                ? intent.getStringExtra(Settings.EXTRA_CONVERSATION_ID) : null;
        mChannel = mBackend.getChannel(mPkg, mUid, channelId, conversationId);
        if (mChannel == null) {
            mBackend.getChannel(mPkg, mUid, channelId, null);
        }
    }

    private void loadConversation() {
+3 −3
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ public class HeaderPreferenceControllerTest {
        NotificationChannel defaultChannel = new NotificationChannel(
                NotificationChannel.DEFAULT_CHANNEL_ID, "", IMPORTANCE_NONE);
        mController.onResume(appRow, defaultChannel, null, null, null, null, null);
        assertEquals("", mController.getSummary());
        assertEquals(appRow.label, mController.getSummary());
    }

    @Test
@@ -159,13 +159,13 @@ public class HeaderPreferenceControllerTest {
        NotificationBackend.AppRow appRow = new NotificationBackend.AppRow();
        appRow.label = "bananas";
        mController.onResume(appRow, null, null, null, null, null, null);
        assertEquals("", mController.getSecondSummary());
        assertEquals(null, mController.getSecondSummary());

        NotificationChannelGroup group = new NotificationChannelGroup("id", "name");

        NotificationChannel channel = new NotificationChannel("cid", "cname", IMPORTANCE_NONE);
        mController.onResume(appRow, channel, group, null, null, null, null);
        assertEquals("", mController.getSecondSummary());
        assertEquals(null, mController.getSecondSummary());

        channel.setDescription("description");
        mController.onResume(appRow, channel, group, null, null, null, null);