summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJian Jin <jinjian@google.com>2020-06-09 19:47:05 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-06-09 19:47:05 +0000
commit1981ba59fd2f661873b8075ae58215f79a0503ca (patch)
tree6bd7ef840d4c99ca3dfc702a631d61cf992cc895
parentc98c183766670e62c74615afc32fb211a8c6d352 (diff)
parent34e7ee51339771b207cb8fd22dc74d5114c3f334 (diff)
downloadsetupwizard-1981ba59fd2f661873b8075ae58215f79a0503ca.tar.gz
Remove temporary status bar workaround am: 34e7ee5133
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/opt/car/setupwizard/+/11810052 Change-Id: I28748371b314e6f0096ee3a46a5821f6fef9ce74
-rw-r--r--library/main/src/com/android/car/setupwizardlib/util/CarSetupWizardUiUtils.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/library/main/src/com/android/car/setupwizardlib/util/CarSetupWizardUiUtils.java b/library/main/src/com/android/car/setupwizardlib/util/CarSetupWizardUiUtils.java
index 30540cc..5ff5929 100644
--- a/library/main/src/com/android/car/setupwizardlib/util/CarSetupWizardUiUtils.java
+++ b/library/main/src/com/android/car/setupwizardlib/util/CarSetupWizardUiUtils.java
@@ -19,7 +19,6 @@ package com.android.car.setupwizardlib.util;
import android.app.Activity;
import android.content.Context;
import android.content.res.TypedArray;
-import android.graphics.Color;
import android.util.Log;
import android.view.View;
import android.view.Window;
@@ -71,9 +70,6 @@ public final class CarSetupWizardUiUtils {
// Hide the nav bar and status bar
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN);
- // Workaround for the issue, StatusBar background hides the buttons (b/154227638).
- window.setNavigationBarColor(Color.TRANSPARENT);
- window.setStatusBarColor(Color.TRANSPARENT);
}
/**